Destructuring & Spread Operator

What will be logged? const obj = {a: 1, b: 2}; const {a, ...rest} = obj; console.log(rest);
Next Question (6/20)