What will be logged to the console?
const x = 6 % 2; const y = x ? 'One' : 'Two'; console.log(y);
undefined
One
true
Two