What's the prolem with my code. and what do they mean when they say "You should not directly use the values "dog", "ran", "big", or "quickly" to create wordBlanks"

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 = "When i fed my " + "dog" +", it grew so " + "big" + ", it "+ "ran" + " so fast and " + "quickly" +" towards me" ; // Change this line
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36.

Challenge: Word Blanks

Link to the challenge:

Hello and welcome to the FCC community~!

The test is asking you not to use “dog”, “ran”, “big”, or “quickly” directly in your wordBlanks string, but instead use the variables that have been assigned those values. :slight_smile:

You just saved my day!!. Thanks buddy

1 Like