function randint(low, max) { return Math.round(Math.random() * 10) % (max ?? low) + (max ? low : 0); }