Default Parameters

What will be logged? const b = 2; function test(a = b, b = 3) { console.log(a, b); } test();
Next Question (20/21)