Word Blanks question

**Hi guys.

I am having some issues regarding bringing each word matched for its own function “cat to myNoun” for example.
follow the code below.**

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

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

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/word-blanks

I did but it still stuck, see the code below. :\

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

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