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