I want to randomly shuffle a list of 4 items but with a seed so that so long as you have the same seed the you will get the same order of items.
[\"a\", \"b\
You can create random numbers to do the sorting using the XOR Shift method. Example. Then just replace Math.random() in your old code with new Xor128(seed).make(3)[2] / 4294967296 * 2
Math.random()
new Xor128(seed).make(3)[2] / 4294967296 * 2