Word Blanks in javaScript

I Identify my mistake


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

  // Your code above this line
  return result;
}

// Change the words here to test your function
wordBlanks("lion", "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/66.0.3359.181 Safari/537.36.

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

You are using the strings “myAdjective”, etc. variable names inside of strings will just be the name, not the value.