export const randomInt = (low: number, high: number) => Math.floor(Math.random() * (high - low + 1) + low);