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