Basic JavaScript - Word Blanks

Tell us what’s happening:
After many attempts and reading hint and topics, I watch the video and find out: I’m making this step exactly like in video, but unchangeable part of code did not contain console.log(wordBlanks) :frowning:

What I’m doing wrong?

Your code so far

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

// Only change code below this line
const wordBlanks = "The " + myAdjective + " " + myNoun + " " + myVerb + " " + myAdverbe + "."; 
// 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_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Safari/605.1.15

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

Variables must be written with correct spelling. Check the spelling for this variable for example.

1 Like

Thanks a lot, my mistake! :slight_smile:

1 Like