private Card takeCard() { Random rnd = new Random(); int r = rnd.Next(deckNum); Deck pick = Decks[r]; return(pick.PickACard()); }