What happens when you try to access a property that doesn't exist on an object?
If you try to access a property that doesn't exist on an object, JavaScript will traverse the prototype chain until it reaches the end. If the property is not found on any object in the prototype chain, the result will be undefined.