Word Blanks can not pass with or without console.log(result)

Could someone tell me what the problem is please? Tried so many times to get it to pass both with and without console.log(result) included in the function.

I’ve looked at the resolutions on the forum provided previous and still can not highlight the issue.

Thanks
Adam

js

function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = "My" + myNoun + " is super" + myAdjective + " all he did was" + myVerb + " really" + myAdverb + "!";

  // Your code above this line
  return result;

}

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

Your browser information:

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

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

Hi!
Take a look at the words you added and how the sentence would read in the result

Ha thank you. Yep I see that I need to work on my spacing. Passed it now, cheers.

:+1: Anytime. Good luck!