Issues with Random Array elements?

Somehow when I set my element in Get to a number, things work fine, but when I use random integer in range, it no longer works fine, and gives me the wrong array element. Is there anything wrong with getting random numbers in arrrays that I am unaware of?

1 Like

EDIT: The problem seems to be with random integers in Range. They Dont work, it only works if I set one number in Get, but if I use the random integers in Range, the number that I get in the array willl be different to the random number.

I found it: If you want just one random number, then do the random integer from range, set the result to a variable, and use the variable from then on. If you pin the same Random integer from range to different nodes, it will always generate a different Number. Hope it helps someone as well.