Need help to thisss

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 = "myNoun " + "myVerb " + "myAdjective " + "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/91.0.4472.77 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

1 Like

I think all you have to do is to remove the quotation marks from the variables on last line. They are variables not strings, so no need to add quotation marks on them. Try that.

Hi @skydancer !

You have two issues.

No.1:
You have to remove the quotes from the variable names like @chetanhaobijam mentioned.

No.2:
You will need to use console.log(wordBlanks) to see what is actually being printed to the console.

You will see there is a spacing issue.

Once you fix those two issues then the test will pass.

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