Please what wrong with this code tell me

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  + "" + myVerb  + "" + myAdjective  + "" + myAdverb + "." ; // Change this line
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-A105F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Mobile Safari/537.36.

Challenge: Word Blanks

Link to the challenge:

Your wordBlanks is “The dogranbigquickly.”

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

"" is not a non-word character. "" is not even a character!

1 Like

Type words to empty strings or enter a space there.

1 Like