Review this code snippet: var time = 15; var greeting; if ( time < 12 ) { greeting = “good morning”; } else if ( time < 18 ) { greeting = “good afternoon”; } else { greeting = “good evening”; } console.log(greeting); What is the message that gets printed to the console?