Please help me to solve this


var myNoun = "dog";

var myAdjective = "big";

var myVerb = "ran";

var myAdverb = "quickly";

// Only change code below this line

var wordBlanks = "My " + myNoun + "is not so " + myAdjective + " and He  " + myVerb + "so " + myAdverb; // Change this line

// Only change code above this line

Please tell me where I am making mistake

Your code so far


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

// Only change code below this line
var wordBlanks = ""; // Change this line
// Only change code above this line

Your browser information:

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

Challenge: Word Blanks

Link to the challenge:

Hi,

I am not sure (this is my first contribution) but it looks like a typo with the quotes. If I replace your “dog” with “dog” (changing the quote as the one you have in your last line using the shiftKey + number 2), on a chrome console it seems to work.
Or you can use the ‘dog’ quotes as well

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

1 Like

there are spaces missing in your string

your wordBlanks has value of "My dogis not so big and He ranso quickly"

1 Like