Function Currying

What's the output of this curried function call?
const multiply = (a) => (b) => a * b;
const double = multiply(2);
const result = double(5);
console.log(result);
Next Question (3/20)