0 / 60 seg.

What will be the output of the following code?

var age = 25;
if (age < 18) {
  console.log("You are a minor.");
} else {
  console.log("You are an adult.");
}