Default Parameters

What is the result of this code? function add(x, y = x + 1) { return x + y; } console.log(add(5));
Next Question (8/21)