diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 0c89d18cb98..8195f730720 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -1269,8 +1269,8 @@
"In order to get the last letter of a string, you can subtract one from the string's length.",
"For example, if var firstName = \"Charles\", you can get the value of the last letter of the string by using firstName[firstName.length - 1].",
"
bracket notation to find the last character in the lastName variable.",
- "HintlastLetterOfFirstName variable declaration if you get stuck."
+ "Use bracket notation to find the last character in the lastName variable.",
+ "HintlastLetterOfFirstName variable declaration if you get stuck."
],
"tests": [
"assert(lastLetterOfLastName === \"e\", 'message: lastLetterOfLastName should be \"e\".');",