What will the value of y be in this code:
const x = 6 % 2; const y = x ? 'One' : 'Two';
One
TRUE
Two
undefined