Arrow Functions

What is the value of `output` after this code runs?
const calculate = (a, b) => a + b;
const output = calculate?.(5, 10);
Next Question (8/20)