Basic Javascipt: World Blanks

Hello,
Not sure why my code isn’t working here.

function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = "";
   var sentence = "My " + myNoun + "is very " + myAdjective + "and he " + myVerb + "very " + myAdverb;
  result += sentence;
  // Your code above this line
  return result;
}

Hello,

Your code should work as everything is correct. Just add spacing before your strings.

var sentence = "My " + myNoun + " is very " + myAdjective + " and he " + myVerb + " very " + myAdverb;
1 Like

Hello Randell,

I put a space before very, but it still won’t work. I feel like its something pretty minor because I felt like my initial code was correct