What will be the value of result in the following code?
result
var age = 18; var result = age >= 18 ? "Adult" : "Minor";
Adult
Minor
Error