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 5f1c7d949f..23345f8d66 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
@@ -367,11 +367,10 @@
" this.name = name;",
"}",
"",
- "let beagle = new Dog(\"Snoopy\");",
- "// Add your code below this line",
"",
"",
- ""
+ "// Add your code above this line",
+ "let beagle = new Dog(\"Snoopy\");"
],
"tests": [
"assert(beagle.numLegs !== undefined, 'message: beagle
should have a numLegs
property.');",