diff --git a/challenges/01-front-end-development-certification/intermediate-bonfires.json b/challenges/01-front-end-development-certification/intermediate-bonfires.json
index 6f6bb978f96..af75968d61b 100644
--- a/challenges/01-front-end-development-certification/intermediate-bonfires.json
+++ b/challenges/01-front-end-development-certification/intermediate-bonfires.json
@@ -438,7 +438,9 @@
"assert.strictEqual(boo({ \"a\": 1 }), false, 'message: boo({ \"a\": 1 }) should return false.');",
"assert.strictEqual(boo(1), false, 'message: boo(1) should return false.');",
"assert.strictEqual(boo(NaN), false, 'message: boo(NaN) should return false.');",
- "assert.strictEqual(boo(\"a\"), false, 'message: boo(\"a\") should return false.');"
+ "assert.strictEqual(boo(\"a\"), false, 'message: boo(\"a\") should return false.');",
+ "assert.strictEqual(boo(\"true\"), false, 'message: boo(\"true\") should return false.');",
+ "assert.strictEqual(boo(\"false\"), false, 'message: boo(\"false\") should return false.');"
],
"MDNlinks": [
"Boolean Objects"