What value is obtained when executing p1.describe() in the following code?
function Person(name, age) {
this.name = name;
this.age = age;
this.describe = function() {
return `${this.name} is ${this.age} years old`;
};
}
const p1 = new Person('Ana', 25);