Basic JavaScript - Word Blanks

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

< Hello y’all campers!! what am I doing wrong or not enough? >> I get this message: " You should not directly use the values " dog, big, run, quickly, to create
wordBlanks" what does it mean " to use directly? Could I use it otherwise? Thanks! >>

Your code so far

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

// Only change code below this line
const wordBlanks = "My " + "big " + "dog " + "ran " + "very " + "quickly " + "."; // Change this line
// Only change code above this line



Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

This line should not use the words big, dog, ran, or quickly, You must use the variables myNoun, myAdjective, myVerb, and myAdverb instead.

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