Escape Sequences in Strings - what

It says myStr should contain a tab character \t which follows a newline character when I try to run the tests. It comes up wrong when I try this. It also says there should be a newline character between FirstLine and SecondLine. There already is one as you can see. I have no idea what I’m doing wrong.

Your code so far


var myStr = "FirstLine\n\SecondLine\\rThirdLine";


Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 10895.56.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.95 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings

This is what i’ve doone

var myStr = ‘FirstLine\n\t\SecondLine\nThirdLine’; // Change this line