Destructuring & Spread Operator

What is the output of this code? const {name, age = 25} = {name: 'Alice'}; console.log(age);
Next Question (3/20)