I just need help plz

Tell us what’s happening:

Your code so far


Dog.prototype = {
constructor: Dog, // Solution

numLegs: 2,
eat: function() {
  console.log("nom nom nom");
},
describe: function() {
  console.log("My name is " + this.name);
}
};

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:77.0) Gecko/20100101 Firefox/77.0.

Challenge: Remember to Set the Constructor Property when Changing the Prototype

Link to the challenge:

Can you be specific about the problem you are having?

Hi @zakplayer23,

You have edited part of your code that did not need editing. This has resulted in your dog missing couple of legs… :upside_down_face:

It seems numLegs property in the code has been updated. Try leaving the rest of the code as is.