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