Dont really understand what they want from here

Tell us what’s happening:

Your code so far


var myNoun = "dog";
var myAdjective = "big";
var myVerb = "ran";
var myAdverb = "quickly";

// Only change code below this line
var wordBlanks = "the" + myNoun + "" + myAdjective + "" + myVerb + "" + myAdverb; // Change this line
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36.

Challenge: Word Blanks

Link to the challenge:

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).

Yeah, it’s telling you that there should be a space between each word. Right now, you have an empty string (not the same thing) and there is no space after “the”. Really, you’re supposed to use this strings to create a sentence, but you can get away without doing that, as long as the spaces make sense. I guess a lot of people don’t remember what madlibs were.