Basic JavaScript - Escape Sequences in Strings

Tell us what’s happening:

I tried also get help of chat gpt , but its not work

Your code so far

const myStr = "FirstLine\n\\SecondLine\n\tThirdLine"; // 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/137.0.0.0 Safari/537.36 Edg/137.0.0.0

Challenge Information:

Basic JavaScript - Escape Sequences in Strings

your string looks like this:

FirstLine
\SecondLine
	ThirdLine

that is not the same as the requested output