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