JS Word Blanks Help Me!

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

// Your code above this line
return result;
}

// Change the words here to test your function
wordBlanks(“dog”, “big”, “ran”, “quickly”);

not working

Take a look at the output on the challenge page. Your code will return this: myAdjective + myNoun + 'is' + myVerb + myAdverb.

That is because you wrapped your solution in a string: var result = " ... ";
If you remove the double quotes, it should work. Some spaces between the words would be nice, too.

thnx man for help!perfect!

I’m stuck on this same challenge. I have no idea what it’s asking me to do. Can someone explain please?