Which Way
var timeOfDay = 500;
function whichWay(timeOfDay){
// YOUR CODE HERE
if (timeOfDay > 600 && timeOfDay < 900 || timeOfDay > 1600 && timeOfDay < 1800) {
return "Rush hour bro... Go around the city."
} else {
return "You good. Go straight through."
}
}
console.log(whichWay(timeOfDay))INFO