diff --git a/seed/challenges/basic-bonfires.json b/seed/challenges/basic-bonfires.json
index c4206aeced..572d0bae50 100644
--- a/seed/challenges/basic-bonfires.json
+++ b/seed/challenges/basic-bonfires.json
@@ -549,7 +549,7 @@
"tests": [
"assert.deepEqual(bouncer([7, \"ate\", \"\", false, 9]), [7, \"ate\", 9], '[7, \"ate\", \"\", false, 9]
should return [7, \"ate\", 9]
.');",
"assert.deepEqual(bouncer([\"a\", \"b\", \"c\"]), [\"a\", \"b\", \"c\"], '[\"a\", \"b\", \"c\"]
should return [\"a\", \"b\", \"c\"]
.');",
- "assert.deepEqual(bouncer([false, null, 0]), [], '[false, null, 0]
should return []
.');"
+ "assert.deepEqual(bouncer([false, null, 0, NaN, undefined, '']), [], '[false, null, 0]
should return []
.');"
],
"MDNlinks": [
"Boolean Objects",