So I have an array of strings: ["a", "b", "c", "d"], but I want array[4] to be a random string each time it is used, so:
array[0] returns "a",
array[1] returns "b",
array[4] returns something random, like "x",
array[4] returns something random the second time as well, like "y",
There is a function random(), but if I set array[4] equal to random() it will hold on to that random value, but it needs to stay random every time it is called.
array[4]- just callrandom()?