const paragraph = "I think Ruth's dog is cuter than your dog!"; const searchTerm = 'dog'; console.log( `Index of the last ${searchTerm} is ${paragraph.lastIndexOf(searchTerm)}`, ); // Expected output: "Index of the last "dog" is 38"