I could use some help

Tell us what’s happening:
Ok so I got this to work by looking which I was close but can anyone explain to me where we learned in the previous moduals +word+ this is really got me stumped!

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:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/word-blanks

yes i understand chaining two strings together with + but that challenge did not work until i did “+word+” to each string which is why i am a bit confused on that but thank you for your help

yes i understand chaining two strings together with + but that challenge did not work until i did “+word+” to each string which is why i am a bit confused on that but thank you for your help

It is making sense to me the more i think about it thank you for ur help much appreciated