Get two bytes long random int.
@override int nextUint16() { var b0 = nextUint8(); var b1 = nextUint8(); return clip16((b1 << 8) | b0); }