What is the value of dessert.type after executing this code?
const dessert = { type: 'pie' }; dessert.type = 'pudding';
undefined
pudding
The code will throw an error.
pie