I want to generate the numbers randomly in a secured way.
I have been using the Math.random()
previously like in the code
url += "abixmlrequest=true&abi_rand=" + Math.random();
The Function is not supported in IE it seems.
window.crypto.getRandomValues(array);
I need to use any other function that is supported in Internet Explorer. suggest some other Function to generate a random number in a easier way and also secured.