public class SortingWarmUp { public static void main(String[] args) { int[] myInt = {45,34,67,12,98,32,78,44,77,11,99,22,26}; for(int num : myInt) // this is the enhanced for loop System.out.println(num); String[] myString = {"bat","cat","rat","mat","sat","at","dot","zat","nat","pat"}; } }