Truthy & Falsy Values

What will the following code output? let x = ''; let y = 0; console.log(x || y || 'both falsy');
Next Question (23/30)