I am trying to create something that generates a random array with no duplicate values. I\'ve already looked at other answers but none seem to help me understand. I cannot t
After you generate each random number, loop through the previous values and compare. If there's a match, re-generate a new value and try again.