Basic JavaScript: Word Blanks test

Tell us what’s happening:

hey there! cant get through with this task with Basic JavaScript: Word Blanks, please assist

var wordBlanks = "The " + " " + myAdjective + " and, " + " " + myNoun +"if, " + " " + myVerb + "for us, " + " " + myNoun + "." ; // What could be wrong

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

Challenge: Word Blanks

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

!!!wordBlanks should contain all of the words assigned to the variables myNoun , myVerb , myAdjective and myAdverb separated by non-word characters (and any additional words in your madlib).

You are missing some spaces. (You also have some extra spaces, but the tests won’t care about that.)

1 Like

Exactly the case, check your spaces also considering your variables!

1 Like