What value is obtained when executing the following code?
let a = 5; let b = 2; console.log(a > b ? a - b : a + b);
7
5
3
10