1
export async function main(min = 0, max = 100) {
2
return Math.floor(Math.random() * (max - min + 1)) + min;
3
}
4