Java Array question, thank you for your help!::

Give the contents of the val array after running the following code:

int [] val = { 3, 10, 44 };
int i = 0;
val[i] = val[i + 1];
i++;
val[i] = val[i + 1];
Question options:

1) 0 1 44

2) 0 2 44

3) 1 2 44

4) 3 3 3

5) 3 0 0

6) 3 3 10

7) 10 44 44