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 c091f47dd7..89cf4b291c 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
@@ -346,11 +346,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.');",
@@ -992,4 +991,4 @@
"translations": {}
}
]
-}
\ No newline at end of file
+}