Concatenating Strings with the Plus Equals Operator little help please

Tell us what’s happening:

What did I do wrong?

Your code so far


// Example
var ourStr = "I come first. ";
ourStr += "I come second.";

// Only change code below this line

var myStr = "This is the first sentence.";
myStr += "This is the second sentence.";


Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/concatenating-strings-with-the-plus-equals-operator

Make sure there’s a space after the period in the first sentence.Otherwise it will look like this.

why does a space go there?

Putting a space between a period and a new sentence is standard.

Your code is returning

"This is the first sentence.This is the second sentence.

The tests are looking for

"This is the first sentence. This is the second sentence.
1 Like