Can someone please help me with this. I think this may be a bug

Tell us what’s happening:
I’m in the concatenating strings with a plus operator portion or learning basic java and i seem to have stumbled on a problem. I’ve seen multiple videos and looked at the hints and they all seem to say I’m correct. The error is: myStr should have a value of the string This is the start. This is the end.
If someone could help I would really appreciate it

Your code so far

const myStr = "This is the start. " + "This is the end"

Your browser information:

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

Challenge: Concatenating Strings with Plus Operator

Link to the challenge:

Build myStr from the strings This is the start. and This is the end. using the + operator.

You are missing something in the last string (think the end of a sentence).

You are missing the end punctuation for the last string.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.