package class9_3_Shuffle; // MSOE. Dr. Yoder. 06 November 2015. public class Shuffle { public static void main(String[] args) { int[] cards = {1,2,3,4,5,6}; // TODO: Shuffle the cards as on the board int[] newDeck = new int[cards.length]; // Could display spots instead of actual cards // (Want to actually move the data) // Neec length. Divide by two // Make second array // Replace first with what we made in the second int newIndex = 1; for(int oldIndex = 0; oldIndex