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