Word Blanks - Mistakes

Tell us what’s happening:
Could somehelp point out my mistakes. I am following the instructions to the best I understand but I am coming up with a blank myself.

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = "The " + myNoun + " was very " + myAdjective + " and it " + myVerb + myAdverb + " than your average dog";
  // Your code above this line
  return result;
}

// Change the words here to test your function
wordBlanks("cat", "little", "hit", "slowly");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

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

You are missing a space between two variables.

I thank you for the help. Sometime it is the most obvious mistakes that can get to us

1 Like