var day ="Sunday";
switch(day) {
case 'monday':
console.log("Drive");
break;
case 'tuseday':
console.log("Get ready");
break;
case 'wednesday':
console.log("Don't drive");
break;
default:
console.log('The light is not green, orange, or red');
break;
}