Destructuring & Spread Operator

What is the output of this code? const [a, b, ...rest] = [10, 20, 30, 40, 50]; console.log(rest);
Next Question (13/20)