Nothing is working

Why is this not correct? I am so confused.

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

// Only change code below this line
var wordBlanks = "The " + myAdjective + "brown" + myNoun + "started to" + myVerb + "very" + myAdverb + "."; // Change this line
// Only change code above this line

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 (’).

what challenge is this? what’s required? what appear in the console when you run the tests?

i understend u ilenia i sawn only the first: "
and i thought that it was an error now i showed and i sawn 2 "
i finished my answers

A lot of your words need spaces around them.

1 Like

what does that mean? you can’t have a dot on its own in JavaScript, it would be a syntax error

1 Like

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