Destructuring & Spread Operator

What will be the value of x and y after this code? let [x = 1, y = 2] = [undefined, null];
Next Question (15/20)