I am trying to create a Deck of cards type scenario, which I want to 'shuffle' and then pick a 'card'. The cards are in a list as 'S6' (6 of spades), 'CJ' (Jack of Clubs) and I want a card to be picked from index value 0 (top of the deck), and so would like to be able to move around each value in the list randomly.
Side question- Would picking a card by using a randomly generated index number produce a similar result? Coding Newboy here!