From 3436b09a1f2c0e456257a3ed9081d07e7f38a11c Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Wed, 23 Dec 2015 22:23:58 -0800 Subject: [PATCH] Clarify instruction for Filter Arrays with Filter --- .../object-oriented-and-functional-programming.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json b/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json index 4407367b02..0c80e44445 100644 --- a/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json +++ b/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json @@ -419,7 +419,7 @@ "array = array.filter(function(val) {", "  return val !== 5;", "});", - "Use filter to remove all elements from array that are greater than 5." + "Use filter to remove all elements from oldArray that are greater than 5." ], "tests": [ "assert.deepEqual(newArray, [1,2,3,4,5], 'message: You should have removed all the values from the array that are greater than 5.');",