Basic JavaScript - Concatenating Strings with Plus Operator

Tell us what’s happening:
I am stuck on this one i cant see what i am missing

Your code so far

var 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/108.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Concatenating Strings with Plus Operator

Link to the challenge:

hi there,

you double quotes do not look correct (they look curly instead of straight).
Please use the English US keyboard when typing to make your double quotes look like this "

Also , why did you change from const to var myStr?