Write a method called sort that sorts an ArrayList. The method should contain a for loop. Test the method with three different arrays: Integers: 2, 4, and 3; Doubles: 3.4, 1.2, and -12.3; Strings: 'Bob', 'Alice', 'Ted', and 'Carol'. This program is similar to the Case Study in the book: Sorting an Array of Objects. Provide the sorted output for each array type.