Help, i got stuck in here!

Tell us what’s happening:
how i can get right code over here, help me someone please

Your code so far

var myStr = "Firstline \n \ Secondline \ \r Thirdline";


Your browser information:

Your Browser User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/escape-sequences-in-strings

Careful with the spelling. The l in line should be a capital L.

There shouldn’t be any spaces in the string. Then note that backslashes have a special purpose in strings, so if you want to literally include a backslash character in your string, you’ll use \\, not just a single one.