What will be the output of the following code?
let isEven = num => num % 2 === 0; console.log(isEven(6));
true
false
undefined
SyntaxError