diff --git a/challenges/02-javascript-algorithms-and-data-structures/es6.json b/challenges/02-javascript-algorithms-and-data-structures/es6.json
index 90a2ced448..c8b3912042 100644
--- a/challenges/02-javascript-algorithms-and-data-structures/es6.json
+++ b/challenges/02-javascript-algorithms-and-data-structures/es6.json
@@ -159,8 +159,8 @@
"tests": [
"// Test user did not replace const keyword",
"// Test s is const",
- "// Test s is sorted",
- "// Test s is still mutable, and object freeze was not invoked"
+ "assert.deepEqual(s, [2, 5, 7], 'message: s
should be equal to [2, 5, 7]
.');",
+ "assert(!Object.isFrozen(s), 'message: s
should not be frozen.');"
],
"type": "waypoint",
"releasedOn": "Feb 17, 2017",