**Tell us what’s happening
I’m wondering why this wont work??
Your code so far
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var result = "The " + myAdjective + myNoun + myVerb + "very " + myAdverb + ".";
// Your code above this line
return result;
}
// Change the words here to test your function
wordBlanks("dog", "big", "ran", "quickly");