0 / 60 seg.

What is the result of this switch case with fall-through in Java?

int day = 2;
switch (day) {
    case 1: System.out.println("Monday");
    case 2: System.out.println("Tuesday");
    case 3: System.out.println("Wednesday"); break;
    default: System.out.println("Other day");
}