What will be the outcome of this Java code using a switch case without break statements?
int month = 4;
switch (month) {
case 1: System.out.println("January");
case 4: System.out.println("April");
case 12: System.out.println("December");
}