Word Blanks problem

Tell us what’s happening:

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = "A " + "dog" + "that was so" + "big" + "hurried towards me,and i " + "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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36.

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

write a new result under the var. and you need to use the wordBlanks like the myNouns, My adjective.
it should look like this.
var return = “”;
result += //your line of code

return result;

The function wordBlanks takes 4 parameters. You need to create a sentence which includes these parameters. In a big app you will don’t know the values of your parameters ( you will don’t know if the passed word is “dog” or “cat”), so you need to create a variable result like this:
result = "A " + param1 + " " + param2.

Be aware, in this challenge you need to separate passed words by non-word characters -> white spaces are fine " ".