varRNG=require("@jwaterfaucett/math_rng");varg=RNG.create();// get a boolean value randomly : true or falseg.bool();// you can generate random sign values +1 or -1g.sign();// create a number between 10 and 100g.rangeInt(100,10);// create a number having exactly 3 digits i.e. between 100-999g.ndigits(3);// get a random floating point value ranging from 0-1g.float();// get a random integer ranging from 0 to PseudoRandom.INT_MAXg.int();