diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index 1096e028683..4b72ffdd493 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -150,7 +150,7 @@
"Bracket notation is a way to get a character at a specific index within a string.",
"Computers don't start counting at 1 like humans do. They start at 0.",
"For example, the character at index 0 in the word \"Charles\" is \"C\". So if var firstName = \"Charles\", you can get the value of the first letter of the string by using firstName[0].",
- "Use bracket notation to find the first character in a the firstLetterOfLastName variable.",
+ "Use bracket notation to find the first character in the firstLetterOfLastName variable.",
"Try looking at the firstLetterOfFirstName variable declaration if you get stuck."
],
"tests": [