Destructuring & Spread Operator

What does the following code do? function fn({name, age}) { console.log(name, age); }
Next Question (11/20)