diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/remember-to-set-the-constructor-property-when-changing-the-prototype.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/remember-to-set-the-constructor-property-when-changing-the-prototype.english.md index 0e2fa69128..62244990bd 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/remember-to-set-the-constructor-property-when-changing-the-prototype.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/remember-to-set-the-constructor-property-when-changing-the-prototype.english.md @@ -42,7 +42,7 @@ function Dog(name) { // Modify the code below this line Dog.prototype = { - numLegs: 2, + numLegs: 4, eat: function() { console.log("nom nom nom"); }, @@ -68,7 +68,7 @@ function Dog(name) { } Dog.prototype = { constructor: Dog, - numLegs: 2, + numLegs: 4, eat: function() { console.log("nom nom nom"); },