hi guys.what do i input on the console.log to print out the output of this challenge
**Your code so far**
function Dog(name) {
this.name = name;
}
Dog.prototype = {
numLegs: 4,
eat: function() {
console.log("bone bone bone")
},
describe: function() {
console.log("My name is " + this.name);
}
};
console.log()
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0
Challenge: Change the Prototype to a New Object
Link to the challenge: