math.random 5 digits code example
Example 1: javascript get a random number with 6 digits
Math.floor(100000 + Math.random() * 900000);
Example 2: javascript random 4 digit number
var seq = (Math.floor(Math.random() * 10000) + 10000).toString().substring(1);
console.log(seq);