CS 1120 In-Class Activity: Collections(#2) ---------------------------------- [cf. 28.16, p.1412] Write an application that creates a LinkedList object of 10 characters, then creates a second list object containing a copy of the first list, but in the reverse order. The characters for the list are: y c P @ 5 V + M & X Hints (incl. useful code snippets): ----------------------------------- 1) Declare and use the Reverse method (reverses originalList) as folows: public static LinkedList ReverseList( LinkedList originalList ) 2) You might wish to use the following method to display ("print") list contents on the console output: public static void PrintList( LinkedList listToPrint ) Example input/output: --------------------- List: y c P @ 5 V + M & X Reversed list is: X & M + V 5 @ P c y