What is the value of result after executing the following code?
result
const result = (function (x) { return x * 2; })(5);
5
undefined
"10"
10