Default Parameters

What is the output of this code? function logValues(a = 1, b = a, c = a + b) { console.log(a, b, c); } logValues(2);
Next Question (11/21)