Word Blanks JS HELP HELP HELP

HELP
Been stuck for days now

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
 var result="";
  // Your code below this line
 result+= "My "+ myAdjective " "+myNoun+" "myVerb+" very "+myAdverb"."; 
  // 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; WOW64; rv:67.0) Gecko/20100101 Firefox/67.0.

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

What is different about the myNoun bit of your code (which is correct) and the myAdjective etc.

Remember that joining strings is like 'string' + 'string' + 'string' + 'string'. You can’t just randomly leave off +s and expect it to work.

Thanks…already solved