diff --git a/challenges/03-back-end-development-certification/automated-testing-and-debugging.json b/challenges/03-back-end-development-certification/automated-testing-and-debugging.json
index a272a358df..fab459adc4 100644
--- a/challenges/03-back-end-development-certification/automated-testing-and-debugging.json
+++ b/challenges/03-back-end-development-certification/automated-testing-and-debugging.json
@@ -52,7 +52,7 @@
"assert(code.match(/console\\.log\\(typeof[\\( ][\"'].*[\"']\\)?\\);/), 'message: You should console.log
the typeof
a string.');",
"assert(code.match(/console\\.log\\(typeof[\\( ]\\d+\\.?\\d*\\)?\\);/), 'message: You should console.log
the typeof
a number.');",
"assert(code.match(/console\\.log\\(typeof[\\( ]\\[\\]\\)?\\);/), 'message: You should console.log
the typeof
an array.');",
- "assert(code.match(/console\\.log\\(typeof[\\( ]\\{\\}\\)?\\);/), 'message: You should console.log
the typeof
a object.');"
+ "assert(code.match(/console\\.log\\(typeof[\\( ]\\{\\}\\)?\\);/), 'message: You should console.log
the typeof
an object.');"
],
"type": "waypoint",
"challengeType": 1,