Word blank not working for me

Tell us what’s happening:
Describe your issue in detail here.
Word blank
whats wrong in this part is not working for me?

Your code so far


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

const wordBlanks = "The" +  myAdjective + "and fisety" + myNoun + "have" +  myVerb + "" +  myAdverb + ".";

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

1 Like

You need to use those variables, combined with text, to create a valid sentence. You have done the first two, but not the third. Put this:

console.log(wordBlanks)

at the bottom to see what the test is seeing. Obviously the test can’t “read” the text, but it can check for valid formatting.

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