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