What will be the value of result in the following code?
result
var x = null; var result = x ? "Truthy" : "Falsy";
Truthy
Error
Falsy