Build a Logic Checker App - Step 12

I was told to:

Add an else clause to the existing if statement. Inside the body of your else clause, log "Timmy is not old enough to drive." to the console.

Can someone point out what i’m missing???

const hasDeveloperJob = true;

if (hasDeveloperJob) {
  console.log("Timmy is employed as a developer.");
}

const isTimmyAGamer = false;

if (isTimmyAGamer) {
  console.log("Timmy loves to play World of Warcraft.");
}

const timmyAge = 18;

if (timmyAge >= 16) {
  console.log("Timmy is old enough to drive.");

// User Editable Region

} else{
  console.log("Timmy is not old enough to drive.");
}


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:147.0) Gecko/20100101 Firefox/147.0

Challenge Information:

Build a Logic Checker App - Step 12

add a space after else

What a silly little bug :heart_eyes: :beetle: :cricket: