Word blanks leaving me blank

Tell us what’s happening:
I created the sentence. What am I missing

Your code so far


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

// Only change code below this line
var wordBlanks = "The " + myAdjective + "" + myNoun + "" + myVerb + "" + myAdverb + "."; // 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/87.0.4280.88 Safari/537.36.

Challenge: Word Blanks

Link to the challenge:

you are missing spaces between the words

Aren’t “” the spaces?

it’s an empty string, which is not a space

"" === " " // this is false

So should I take them out?

"The" + myAdjective + " " + myNoun + " " + myVerb + " " + myAdverb + " . "; // Change this line

"The " + myAdjective + " " + myNoun + " " + myVerb + " " + myAdverb + "."

Finally

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