Word Blanks Issue

Tell us what’s happening:
I am running into the issue of not knowing if I am suppose to put the parameter name after the concatenation such as myNoun + “” + myAdjective or or the way I have it.

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
var result ="the" + "dog" +" is" + " big" + " and" + " ran" + " very" + " quickly.";

  // 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/76.0.3809.132 Safari/537.36.

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

You need to use the variables that are in the function definition

Right now, you’re not using those passed parameters