Need little help on this topic i have try many way to solved this problem but i can not

Tell us what’s happening:
Describe your issue in detail here.

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


var myNoun = "dog";

var myAdjective = "big";

var myVerb = "ran";

var myAdverb = "quickly";

// Only change code below this line

var wordBlanks = "My" + myAdjective + "and dumb" + myNoun + "has" + myVerb + "very" + myAdverb + "into the street."; // 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/94.0.4606.71 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

Hi @md.farhan0203, welcome to the forum.

I suggest you to try and place a

console.log(wordBlanks)

Below your variable. You should see an output like:

'Mybigand dumbdoghasranveryquicklyinto the street.'

As you can see, you are not passing the challenge due to formatting errors, there are not enough spaces to make that a proper sentecnce.

I’ll let you figure it out where/how to put those spaces.

Best of luck and happy coding :sparkles:

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