Basic JavaScript - Concatenating Strings with Plus Operator

I’m not understanding what I am doing wrong. My console log is saying " ```
myStr


should have a single space character between the two strings.

myStr


should have a value of the string

This is the start. This is the end.

Describe your issue in detail here.

**Your code so far**


```javascript
const myStr = "This is the start" + "This is the end."; // Change this line

Your browser information:

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

Challenge: Basic JavaScript - Concatenating Strings with Plus Operator

Link to the challenge:

I suggest you reset the lesson. You currently are missing a punctuation mark in one string and a space character is needed in one of the strings to separate the strings (per the instructions).

The two tests you are failing are telling you exactly what I am telling you.

Not helpful I was putting the space in the wrong spot i had to watch the video again.

In the code you posted (see below), you did not have any space characters when the two strings. It had nothing to do with the space being in the wrong place.

You don’t have to watch a video to pass the challenge. You just have to pay close attention to the details.

Programming is all about the small details. It is normal to miss the small details when first learning to code, but you will get the hang of it the longer you practice.

thank you for the encouragement. but I’ve got two types of learning disabilities, and what might be easy for some to understand is difficult for me but I’m trying my hardest to understand JavaScript but non of it makes any since to me. I understood Html and CSS better the 2nd time through don’t get me wrong I understood it the first time I just got a better understanding the 2nd time I did it. maybe I’ll have to do the same thing with JavaScript. Also, you might want to update the hints.

@mistybedell8490 How did you go with the challenge in the end?

I had to watch the video to understand what I was doing.

I would be careful about needing to copy the video too much. There aren’t videos to copy on every lesson, and there aren’t videos to copy for the projects.