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 3dbfc0930a..251e234cf6 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
@@ -405,8 +405,8 @@
"tests": [
"assert.deepEqual(oldArray, [1,2,3,4,5,6,7,8,9,10], 'message: You should not change the original array.');",
"assert.deepEqual(newArray, [1,2,3,4,5], 'message: You should have filtered out all values from the array that are greater than 5.');",
- "assert(editor.getValue().match(/array\\.filter\\s*\\(/gi), 'message: You should be using the filter
method to remove the values from the array.');",
- "assert(editor.getValue().match(/\\[1\\,2\\,3\\,4\\,5\\,6\\,7\\,8\\,9\\,10\\]/gi), 'message: You should only be using filter
to modify the contents of the array.');"
+ "assert(editor.getValue().match(/array\\.filter\\s*\\(/gi), 'message: You should be using the filter
method to create a new array.');",
+ "assert(editor.getValue().match(/\\[1\\,2\\,3\\,4\\,5\\,6\\,7\\,8\\,9\\,10\\]/gi), 'message: You should only be using filter
to make the new array.');"
],
"type": "waypoint",
"challengeType": 1,