public static void mystery(int x, int y) { int z = 0; // Point A while (x >= y) { // Point B x -= y; // Point C z++; // Point D } // Point E System.out.println(z + " " + x); } Fill in the table below with the words ALWAYS, NEVER or SOMETIMES. x < y x == y z == 0 +------------------+------------------+------------------+ Point A | | | | +------------------+------------------+------------------+ Point B | | | | +------------------+------------------+------------------+ Point C | | | | +------------------+------------------+------------------+ Point D | | | | +------------------+------------------+------------------+ Point E | | | | +------------------+------------------+------------------+