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 c190e064da..3d228e0c7e 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json +++ b/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json @@ -420,7 +420,7 @@ "Fix the regex /<.*>/ to return the HTML tag <h1> and not the text \"<h1>Winter is coming</h1>\". Remember the wildcard . in a regular expression matches any character." ], "challengeSeed": [ - "let text = \"

Winter is coming

\"", + "let text = \"

Winter is coming

\";", "let myRegex = /<.*>/; // Change this line", "let result = text.match(myRegex);" ],