Returns a random unsigned 32-bit integer.
int random() { final ary = new Uint32List(1); window.crypto.getRandomValues(ary); return ary[0]; }