diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json b/seed/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json
index 1b48605dce7..2177997691f 100644
--- a/seed/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json
+++ b/seed/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": [],