Word Blanks aid please

Tell us what’s happening:
Help with this Im not understanding the instructions clearly

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  
  var result = 'My' +myNoun+ 'lovely' +myAdjective+  +myVerb+ +myAdverb+ 'after me.'

  



  // 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; rv:64.0) Gecko/20100101 Firefox/64.0.

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

Hi there. It looks like you need to add spaces after each word such as 'My ' and ' lovely ' and also you have some extra pluses where there doesn’t need to be one.

Your code returns MydogbigranquicklylovelyundefinedNaNNaNafter me..

Lovely is an adjective, consider removing it. Also, think about how result will print. Right now, it will print as one long word. Also, look at how many ‘+’ symbols you have