Pls help me with this

function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var result = (“myNoun”, “myAdjective”, “myVerb”,“myAdverb”) ;

// Your code above this line
return result;
}

// Change the words here to test your function
wordBlanks(“myNoun”, + “myAdjective”, + “ran”, + “quickly”);

We’re trying to avoid posting copy-and-paste solutions on this forum, but rather guide people toward finding the correct answer on their own. Thank you for your understanding.

Besides that, you also need to add spaces between each word.

Sorry i am really new here