Prototype & Prototypal Inheritance

What issue could arise from changing an object's prototype after creation?
function Mammal() {}
function Bird() {}

const bat = new Mammal();

Object.setPrototypeOf(bat, Bird.prototype);
Next Question (15/22)