What is the output?int intValue = 2;switch (intValue) { case 1: System.out.print("1 matched "); case 2: System.out.print("2 matched ");}