randomElement method

T randomElement(
  1. Random random
)

Implementation

T randomElement(Random random){
  return this[random.nextInt(length)];
}