Strings with Plus Operator

Okay so my only problem is maintaining the value of both strings. 
This is assuming that there is no spaces between statements.  Please help! 

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

// Only change code below this line

var myStr = “This is the start.”+“This is the end.”;


**Your browser information:**

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

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

Please, don’t use backtisks everywhere, just around your code. It is difficult to read your post and followthe link written like that.

Well, there is no space between the two strings… look at the end of the first string and the beginning of the second in the example, and look at yours.

See also the Note in the text of the challenge