What is stored in alpha after the following code executes?
int[] alpha = new int[5];int j;for (j = 0; j < 5; j++){alpha[j] = 2 * j;if (j % 2 == 1)alpha[j - 1] = alpha[j] + j;}1. alpha = {0, 2, 4, 6, 8}
2. alpha = {0, 2, 9, 6, 8}
3. alpha = {3, 2, 9, 6, 8}
4. alpha = {0, 3, 4, 7, 8}