For a more specific condition, like if hour is greater than 12 but less than 17, we can code else if (hour < 17) instead.
hour
12
17
else if (hour < 17)
Make sure to pick else, followed by if, and finally (hour < 17).
else
if
(hour < 17)