Complete the function 'interpolate'. This function will take in a string parameter, and return a string
I have put string data into the console log and called the function
I was expecting for the string of "I love lettuce"
function interpolate(favoriteFood) {
console.log("I love" + favoriteFood);
}
interpolate("lettuce");