diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index 3465c9dcb1..cc8906b39b 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -249,7 +249,7 @@
"In order to get the last letter of a string, you can subtract one from the string's length.",
"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]
.",
"Use bracket notation
to find the second-to-last character in the lastName
string.",
- "Try looking at the lastLetterOfLastName
variable declaration if you get stuck."
+ "Try looking at the thirdToLastLetterOfFirstName
variable declaration if you get stuck."
],
"tests": [
"assert(secondToLastLetterOfLastName === 'c', 'secondToLastLetterOfLastName should be \"c\".');",