Basic JavaScript - Word Blanks

Tell us what’s happening:

Hello all! How should I not directly use the values cause I’ve tried everything I know.

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 " + "big" + " black " + "dog" + " in my opinion, " + "ran" + " way too " + "quickly" + "."; // 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/17.4.1 Safari/605.1.15

Challenge Information:

Basic JavaScript - Word Blanks

Use the variables instead. For example you have a variable called myNoun.

2 Likes

really and truly appreciate.

2 Likes

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