What is the value of c after executing the following code?
c
let a = 5, b = 10; let c = a < b ? a : b;
false
10
true
5