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 db77cbba8a9..997450c4cfe 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 @@ -390,7 +390,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) {
  return val !== 5;
});
", - "Use filter to filter out all elements from oldArray that are greater than 5 and store the results into newArray. oldArray should not change." + "Use filter to create a new array with all the values from oldArray which are less than 6.
oldArray should not change." ], "challengeSeed": [ "var oldArray = [1,2,3,4,5,6,7,8,9,10];",