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 271459da10..c2f6a30704 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json +++ b/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json @@ -365,7 +365,7 @@ "challengeSeed": [ "let difficultSpelling = \"Mississippi\";", "let myRegex = /change/; // Change this line", - "let result = difficultSpelling.match(myRegex)" + "let result = difficultSpelling.match(myRegex);" ], "tests": [ "assert(/\\+/.test(myRegex.source), 'message: Your regex myRegex should use the + sign to match one or more s characters.');",