diff --git a/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json b/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json
index 11a76f7d62..ad7e1188c8 100644
--- a/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json
+++ b/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json
@@ -397,7 +397,7 @@
"The following code is an example of using filter
to remove array elements that are equal to five:",
"Note: We omit the second and third arguments since we only need the value",
"
array = array.filter(function(val) {", - "Use
return val !== 5;
});
filter
to create a new array with all the values from oldArray
which are less than 6.oldArray
should not change."
+ "Use filter
to create a new array with all the values from oldArray
which are less than 6. The oldArray
should not change."
],
"challengeSeed": [
"var oldArray = [1,2,3,4,5,6,7,8,9,10];",