import { _randomInteger } from "./_randomInteger"; export const _randomPick = (array: T[]): T => array[random(array)]!; const random = (array: T[]) => _randomInteger({ type: "integer", minimum: 0, maximum: array.length - 1, });