js generate random between 1 and 8500000 code example
Example 1: random in a range js
const rnd = (min,max) => { return Math.floor(Math.random() * (max - min + 1) + min) };
Example 2: javascript random integer
const randInt = (min, max) => Math.floor(min + Math.random() * (max - min + 1));