Word Blanks in js

I cannot identify where is the mistake

Your code so far


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

Your problem is that you put the function paramaters (myNoun, myAdjective, myVerb, myAdverb) in quotations within the function, making them always equal to the string “myAdjective” “myNoun” etc. regardless of what parameters you put in. So it’s never using the words you select when you call the function with wordBlanks(“lion”, “big”, “ran”, "quickly) So all you have to do in remove the quotations from your var result line, and it will recognize that these are the function parameters.

(Just a note parameter might be the wrong word, basically know nothing about JS so if anyone knows please pipe up <3)