diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 8195f730720..75ba8a94486 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -1306,8 +1306,8 @@
"You can use the same principle we just used to retrieve the last character in a string to retrieve the Nth-to-last character.",
"For example, you can get the value of the third-to-last letter of the var firstName = \"Charles\" string by using firstName[firstName.length - 3]",
"
bracket notation to find the second-to-last character in the lastName string.",
- " HintthirdToLastLetterOfFirstName variable declaration if you get stuck."
+ "Use bracket notation to find the second-to-last character in the lastName string.",
+ " HintthirdToLastLetterOfFirstName variable declaration if you get stuck."
],
"tests": [
"assert(secondToLastLetterOfLastName === 'c', 'message: secondToLastLetterOfLastName should be \"c\".');",