Help help Word Blanks

Tell us what’s happening:
I do not understand where this is incorrect I would really appreciate your help I want to move forward, thank you!

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 quick brown dog"+ myNoun + "jumped over the "+ myAdjective + "fence and "+ myVerb + "past me "+ myAdverb;// 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/92.0.4515.107 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

You have two problems here.

First of all, you have a problem with spaces.

Stick

console.log(wordBlanks);

at the bottom of the code and see the output below. You should see the problem with the spaces.

You will also see the other problem - you repeated on of your variable words.

When I fix those problems, your code passes for me.

1 Like

yaaay thank you !the spaces and dog were the problem ! thank you for responding quickly i appreciate it!

1 Like

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