Default Parameters

What will be logged? function test(a = 1, b) { return [a, b]; } console.log(test(undefined, 5));
Next Question (6/21)