var myStr =“FirstLine\n\t\SecondeLine\nThirdLine”;// Change this line
// running tests
myStr should contain the strings FirstLine, SecondLine and ThirdLine (remember case sensitivity)
SecondLine should be preceded by the backslash character \
There should be a newline character between SecondLine and ThirdLine
// tests completed