diff --git a/challenges/object-oriented-and-functional-programming.json b/challenges/object-oriented-and-functional-programming.json index 7bd8ff8d1b..bf76f7ca77 100644 --- a/challenges/object-oriented-and-functional-programming.json +++ b/challenges/object-oriented-and-functional-programming.json @@ -227,7 +227,7 @@ "difficulty":0, "description":[ "filter is a useful method that can filter out values that don't match a certain criteria", - "Let's remove all the values less than six", + "Let's remove all the values greater than six", "array = array.filter(function(val) {", "  return(val<4);", "});"