problem.Use Inheritance So You Don't Repeat Yourself

Tell me what’s happening:

Your code so far


function Cat(name) {
  this.name = name; 
}

Cat.prototype = {
  constructor: Cat, 
  eat: function() {
    console.log("nom nom nom");
  }
};

function Bear(name) {
  this.name = name; 
}

Bear.prototype = {
  constructor: Bear, 
  eat: function() {
    console.log("nom nom nom");
  }
};
function Animal() { }
Animal.prototype = {
  constructor: Animal,
  describe:function()
  {console.log("my name is" + this.name);}
  
};
Cat.prototype ={
  constructor :Cat
};
Bear.prototype={
  constructor:Bear
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/object-oriented-programming/use-inheritance-so-you-dont-repeat-yourself

your bear and cat prototypes should not have eat functions mate