diff --git a/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json b/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json
index 1c0b27d54d..4cfd5aadff 100644
--- a/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json
+++ b/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json
@@ -481,7 +481,7 @@
"Use the caret
character in a regex to find \"Cal\"
only in the beginning of the string rickyAndCal
."
],
"challengeSeed": [
- "let rickyAndCal = \"Cal and Ricky both like racing.\"",
+ "let rickyAndCal = \"Cal and Ricky both like racing.\";",
"let calRegex = /change/; // Change this line",
"let result = calRegex.test(rickyAndCal);"
],