Word Blanks help needed

Tell us what’s happening:

Help me solving this …

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = "";
result+= "My "+myNoun+" "+myAdjective+" "+myAdverb+" very "+myAdverb+".";
  // Your code above this line
  return result;
}

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

You have two myAdverbs. One of them should be myVerb.

oh! I just missed that. thank you!