getItem static method
Randomly selects an item from a list.
Implementation
static dynamic getItem(List list) {
return list[random.nextInt(list.length)];
}
Randomly selects an item from a list.
static dynamic getItem(List list) {
return list[random.nextInt(list.length)];
}