WordBlanks challenge

Tell us what’s happening:

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 " + myAdjective + " "+ myNoun +" " + myVerb + myAdverb +"."; // Change this line
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 13020.67.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36.

Challenge: Word Blanks

Link to the challenge:

Hello there,

Add this to the last line of the script, and see if it looks right:

console.log(wordBlanks)

Also, for future posts, please add a question to the Tell us what’s happening section, if you have a question/problem.

Hope this helps