Help With Word Blanks

Tell us what’s happening:
Describe your issue in detail here.

**

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

**


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

yntaxError: unknown: Missing semicolon. (7:77)

5 |
6 | // Only change code below this line

7 | const wordBlanks = "The " + myAdjective + " " + “myNoun” + " " + myVerb + " " myAdverb + “.”;
| ^
8 | // Change this line
9 | // Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

A few issues

You shouldn’t have the variable names inside of quotes

How do you want to combine these two things?

Thank you so much JeremyLT

1 Like

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