What is the value of result after executing the following code?
result
let a = 2; let b = 3; let result = a ** b;
6
8
9
5