**In this section, from what that s explained, i thought that the
function Dog(name) {
this.name = name,
this.numlegs = numlegs
}
can still share thesame property to ALL instance of Dog, when the prototype is not built.
**
Your code so far
function Dog(name) {
this.name = name;
}
Dog.prototype.numLegs = 4;
// Only change code above this line
let beagle = new Dog("Snoopy");