Showing error in Word Blanks,

**Hi all, I am getting the following error. Please help.

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 of your choice).**
Describe your issue in detail here.

Your code so far

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

// Only change code below this line
const wordBlanks = "The" + myAdjective + " " + myNoun + " " + myVerb + " " + 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; rv:101.0) Gecko/20100101 Firefox/101.0

Challenge: Word Blanks

Link to the challenge:

Hey @gaditya931 try adding the following below your code:

console.log(wordBlanks)

And see what the console print out. From there you should be able to see the error pretty quickly :slight_smile:

Hope this helps :sparkles:

Thank you so much @Marmiz. It worked. thanks a lot.

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