Display a message in the console when age is greater than 12 and less than 17 by coding an else if statement.
age
12
17
else if
Make sure to pick else followed by if and then (age <= 16), {, }.
else
if
(age <= 16)
{
}