Implement a method that does the following algorithm:
- creates
List<String>from a given array of strings; - using
ListIterator, removes all items not starting with"J"; - removes
"J"from items beginning with"J"(e.g.,JFrame->Frame); - prints all the remaining elements in the reverse order.