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.');",