Default Parameters

What will be logged? function display(a, b = 5, c = b) { console.log(a, b, c); } display(1, undefined, 3);
Next Question (13/21)