What will happen when the following code is executed?
const object = {}; console.log(object.property);
undefined will be logged to the console.
undefined
An error will occur because the property is not defined.
null will be logged to the console.
null