I have this code:
public static String SelectRandomFromTemplate(String template,int count) { String[] split = template.split(\"|\"); List
Probably because you're working with unmodifiable wrapper.
Change this line:
List list = Arrays.asList(split);
to this line:
List list = new LinkedList<>(Arrays.asList(split));