I have the following array:
int[] month = new int[12] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 };
This represents my months in a year.
Now I have two buttons, and a label. The label should only display the value of the current item in the array. When I press, lets say, the next button, It should move from eg. 5 to 6 in the array, and now display 6 in the label.