Write a Java program that does the following:
Creates an ArrayList of strings. Adds at least 5 different names to the ArrayList. Prints the elements of the ArrayList. Removes the third name from the ArrayList. Checks if a specific name (e.g., "Alice") is in the ArrayList and prints the result. Sorts the ArrayList alphabetically. Prints the sorted ArrayList.