<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
<In what way does your code behave incorrectly? Include ALL error messages.>
```public class GeneralizationsB {
public static void main(String args) {
// ( 3 >= 3 && (!true || true) )
boolean tricky = false;
if(2015 < 2016) {
System.out.println("Stuck in the past...");
}else {
System.out.println("Upgraded to the future!");
}
int subwayTrain = 9;
switch (subwayTrain){
case 1 : System.out.println("This is a South Ferry bound train!");
break;
case 5 : System.out.println("This is a Brooklyn bound train!");
break;
case 7 : System.out.println("This is a Queens bound train!");
break;
default:
System.out.println("I'm not sure where that train goes...");
}
}
}
<do not remove the three backticks above>