What is the value of result after executing the following code?
result
let a = 5; let b = 2; let result = a ** b + 1;
10
25
11
26