I don't know where is the problem

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


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/95.0.4638.69 Safari/537.36

Challenge: Concatenating Strings with Plus Operator

Link to the challenge:

I see the issue. The exercise tells you to include a space between the strings. You are missing a space(there a two places you can put a space and it’ll work, it’s your choice), and a period.

Hi @asmaakishk !

Welcome to the forum!

I would suggest adding console.log to these challenges to help you see the issues that @vinyl704 is talking about.

Try this code out so you can see your results in the console and fix those errors.

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


//this is the correct output
console.log("This is the start. This is the end.")
//this is your output
console.log(myStr) 

Hope that helps!

1 Like

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