I want to create a program that creates a deck of cards and to have an array of cards. Each card is also an array that holds two values, suit and value.
So you would be able to do something like card[1] = [1,5]
where 1 is the rank of the suite and 5 is the value of the card.
It's been a long time since I have used Java so this is my project to reteach me how to program.
Thanks in advance for the help!