export const chooseIndex = (array: T[], getRandom = () => Math.random()): number => Math.floor(getRandom() * array.length) export const chooseItem = (array: T[], getRandom = () => Math.random()): T => array[chooseIndex(array, getRandom)]