Word Blanks help require

Tell us what’s happening:

Your code so far


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

  var result = "My + "big" + "dog" + "ran" "+quickly+" as soon as it saw us";

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

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

Well, you’re there, just need to re-organize stuff ^^
The code after var result = is messy, get rid of it ^^
The first line of code now can replace it and the challenge will be overcome!