export const getRandom = (number: number) => { const myRandom = Math.floor(Math.random() * number); return myRandom }