Tell us what’s happening:
I’m pretty sure I followed the instructions, even read up on similar problem like mine, but it still won’t work! Somebody, please help.
Your code so far
const myNoun = "dog";
const myAdjective = "big";
const myVerb = "ran";
const myAdverb = "quickly";
// Only change code below this line
const wordBlanks = "That " + "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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36
Words that are in quotes will be string literals. That means that "myAdjective" will print the word “myAdjective” instead of the the value in the variable (in this case “big”).
Your string right now would print “That myAdjective myNoun myVerb myAdverb .”
Can this get any more complicated? I’ll just leave it for sometime and think it through, hopefully, I’ll understand what it is I’m supposed to do. Thank you for your time.
I’ll drop a feedback tomorrow.
This stuff definitely can be complicated - though you might be overthinking this a tad. Remember, adding two raw strings together is the same thing as adding a raw string and a variable holding a string. console.log("dog" + " " + "woofs"); is the same as let pet = "dog"; console.log(pet + " " + "woofs");