diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer.english.md
index 4c9dc96225..b842b3734d 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer.english.md
@@ -30,9 +30,8 @@ tests:
testString: assert.deepEqual(bouncer(["a", "b", "c"]), ["a", "b", "c"]);
- text: bouncer([false, null, 0, NaN, undefined, ""])
should return []
.
testString: assert.deepEqual(bouncer([false, null, 0, NaN, undefined, ""]), []);
- - text: bouncer([1, null, NaN, 2, undefined])
should return [1, 2]
.
- testString: assert.deepEqual(bouncer([1, null, NaN, 2, undefined]), [1, 2]);
-
+ - text: bouncer([null, NaN, 1, 2, undefined])
should return [1, 2]
.
+ testString: assert.deepEqual(bouncer([null, NaN, 1, 2, undefined]), [1, 2]);
```