diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/debugging.json b/seed/challenges/02-javascript-algorithms-and-data-structures/debugging.json index 31c0a0cd3d..15f96a095c 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/debugging.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/debugging.json @@ -126,7 +126,7 @@ "" ], "tests": [ - "assert(code.match(/console\\.log\\(typeof[\\( ].*\\)?\\);/g).length == 2, 'message: Your code should use typeof in two console.log() statements to check the type of the variables.');", + "assert(code.match(/console\\.log\\(typeof[\\( ].*\\)?\\)/g).length == 2, 'message: Your code should use typeof in two console.log() statements to check the type of the variables.');", "assert(code.match(/typeof[\\( ]seven\\)?/g), 'message: Your code should use typeof to check the type of the variable seven.');", "assert(code.match(/typeof[\\( ]three\\)?/g), 'message: Your code should use typeof to check the type of the variable three.');" ],