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