diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index 2316b71b0d..4143926095 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -216,7 +216,7 @@ "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].", "Use bracket notation to find the last character in the lastName variable.", - "Try looking at the lastLetterOfLastName variable declaration if you get stuck." + "Try looking at the lastLetterOfFirstName variable declaration if you get stuck." ], "tests": [ "assert(lastLetterOfLastName === \"e\", 'lastLetterOfLastName should be \"e\"');",