0 / 60 seg.

What is the result of the following code?

let age = 25;
let message;
if (age >= 18 && age <= 35) {
  message = 'Young adult';
}
console.log(message);