Testing out the randomseed
JS library for making a reproducible random number generator.
Setting a random seed makes the "random" number generation process reproducible so that the same sequence is generated every time the script is run.
The sequence can be changed by changing the random seed (the string in the Math.seedrandom()
call at line 3 in main.js
).