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