From d1b1c508f524efb696e6c5cfbebabf3d732676dc Mon Sep 17 00:00:00 2001 From: dnahol Date: Thu, 2 Feb 2017 06:12:47 -0800 Subject: [PATCH] added semicolon --- .../regular-expressions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json b/seed/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json index deb1add1ac8..1ffd524614a 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json +++ b/seed/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);" ],