export const pickRandomArrayItem = (array: T[]) => { return array[Math.floor((array.length - 1) * Math.random())]; };