What am I missing here friends?

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15

Challenge: Word Blanks

Link to the challenge:

When you wrap a variable name in double quotes it changes it to a string. Thus, " myAdjective" does not represent the variable myAdjective any more but the string literal " myAdjective".

Howdy,

I can’t give you the solution because it’s forbidden for us, but a hint.

Double check the format of the strings you put on wordBlanks and what you are trying to achieve.

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