Need some help here

Tell us what’s happening:
Hello everyone! I’m a little confused about why I’m seeing the last message pop up. I think I formatted by code correctly, but maybe i messed up somewhere. Thank you!

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

Your code so far


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

// Only change code below this line
var wordBlanks = " Our neighbor's " + myNoun + "l il chungus, " + myVerb + " in " + myAdjective + " spaghettio's " + " and swam " + myAdverb + " but fell in the ocean " + ". ";// Change this line
// Only change code above this line

Your browser information:

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

Challenge: Word Blanks

Link to the challenge:

looks like a missing space at the start of this sub-string.

Ohh thank you sir! I appreciate it man lol

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.