What is the result of sum after executing the following code?
sum
let x = 3; let y = 4; let sum = x + y * 2;
14
11
24
15