<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
https://www.codecademy.com/pt/courses/objects-ii/3/4?curriculum_id=506324b3a7dffd00020bf661#
I dont know what to do, always appears this: Make sure to create a new instance called Penguin penguin! I do not know what I’m missing, please someone help me!,The funny thing is that the console display appears: Hi my name is Pingo, all right, but still appears error
```// the original Animal class and sayName method
function Animal(name, numLegs) {
this.name = name;
this.numLegs = numLegs;
}
Animal.prototype.sayName = function() {
console.log("Hi my name is " + this.name);
};
// define a Penguin class
function Penguin(name, numLegs) {
this.name=name;
this.numLegs=2;
};
// set its prototype to be a new instance of Animal
Penguin.prototype.sayName = function () {
console.log("Hi my name is " + this.name);
};
Penguin.prototype = new Animal();
var penguin = new Animal(“Pingo”, 2);
penguin.sayName(penguin);
<do not remove the three backticks above>