Truthy & Falsy Values

What will the following code output? const value = {}; console.log(value ? 'truthy' : 'falsy');
Next Question (29/30)