jonwakil18 jonwakil18 30-11-2022 Computers and Technology contestada 1. What is output by the code at right? ArrayList x = new ArrayList(); x.add(45); x.add(21); Iterator it = x. iterator(); System.out.println(it.next()); System.out.println(it.next());