Wybierz losowy element z listy Java

Random randomizer = new Random();
String random = list.get(randomizer.nextInt(list.size()));
Thoughtless Teira