Word Blanks .unable to understand the problem

Tell us what’s happening:

not able to understand the quiz

Your code so far

function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  var result = "Hey,my " + myAdjective + " angry " + myNoun + myVerb + myAdverb +" after the cat." ;
  // 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");

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36.

Link to the challenge:

you’re almost there

should contain all of the passed in words

you already put myAdjective, myNoun, myVerb, & myAdverb

separated by non-word characters (and any additional words in your madlib

you need to separate each word with non word character
Ex :

myNoun + myVerb -> myNoun + " " + myVerb

you put space between these character

In your answer, myNoun, myVerb and myAdverb don’t have spaces among them.

thank you for ur help.

thanx for your help.