Where is the problem on this?

Tell us what’s happening:

Your code so far


var myStr = " This is the start."  +"This is the end"; // Only change thi

Your browser information:

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

Challenge: Concatenating Strings with Plus Operator

Link to the challenge:

Check your spacing in the first string and add a period to the end of the second string, A lot of the tests are really specific about formatting issues.

Hi,

You have made a working string but you need to create the same string as is requested. Which is: "This is the start. " and "This is the end."
So, do not forget that empty spaces are also part of a string. The string that you have made, is not identical to the one that is being requested.

Greets,
Karin