Consider the mutually recursive methods below. Select the method call that could be used to generate the output sequence: A5 B4 A3 B2 A1 public static void methodA(int value) { if (value > 0) { System.out.print(" A" value); methodB(value - 1); } } public static void methodB(int value) { if (value > 0) { System.out.print(" B" value); methodA(value - 1); } }