Default Parameters

What is the value of y after this code runs? function test(x, y = 10) { return y; } const y = test(5, undefined);
Next Question (4/21)