I'm printing this out functionally.
listaITSAV.stream().sorted().forEach(System.out::println);
But I want to save the sorting of this list in a variable and then print the variable containing the sorting.
note: ListaITSAV is a LinkedList
LinkedList<String> listaITSAV = new LinkedList<String>();