diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index d68cba9f4e3..0c89d18cb98 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -1230,11 +1230,11 @@ "id": "bd7123c9c450eddfaeb5bdef", "title": "Use Bracket Notation to Find the Nth Character in a String", "description": [ - "You can also use bracket notation to get the character at other positions within a string.", - "Remember that computers start counting at 0, so the first character is actually the zeroth character.", + "You can also use bracket notation to get the character at other positions within a string.", + "Remember that computers start counting at 0, so the first character is actually the zeroth character.", "

Instructions

", - "Let's try to set thirdLetterOfLastName to equal the third letter of the lastName variable.", - "Hint
Try looking at the secondLetterOfFirstName variable declaration if you get stuck." + "Let's try to set thirdLetterOfLastName to equal the third letter of the lastName variable.", + "Hint
Try looking at the secondLetterOfFirstName variable declaration if you get stuck." ], "tests": [ "assert(thirdLetterOfLastName === 'v', 'message: The thirdLetterOfLastName variable should have the value of v.');"