Word Blanks separated by non-words

I can’t solve this challenge.

This is the error message:
wordBlanks("dog", "big", "ran", "quickly") should contain all of the passed in words separated by non-word characters (and any additional words in your madlib).

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = 'It was really ' + myAdjective + " " + ', and we ' + myVerb + "   " + 'ourselves ' + myAdverb + ".";

  // Your code above this line
  return result;
}

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

Looks like you forgot myNoun.

I tought that i can use only 3 of that wordblanks, but i add myNoun and works.
Thanks!

I’m glad I could help. Happy coding!