What is the result of the following code?
let m = 5, n = 10, o = 15; if (m < n && n < o) { o = m + n; } console.log(o);
15
10
5