export class ArrayUtils { public static chooseRandom(array: Array):T { const index = Math.floor(Math.random() * array.length); return array[index]; } }