diff --git a/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json b/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json
index 1b48605dce..2177997691 100644
--- a/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json
+++ b/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json
@@ -393,7 +393,8 @@
],
"tests": [
"assert(ownProps.includes('name'), 'message: The ownProps
array should include \"name\"
.');",
- "assert(prototypeProps.includes('numLegs'), 'message: The prototypeProps
array should include \"numLegs\"
.');"
+ "assert(prototypeProps.includes('numLegs'), 'message: The prototypeProps
array should include \"numLegs\"
.');",
+ "assert(!/\\Object.keys/.test(code), 'message: Solve this challenge without using the built in method Object.keys()
.');"
],
"solutions": [],
"hints": [],