"ind" is your indice number, the array[ i ], i means the position in the array which accompanies an element in the array.
Say you have:
int array[] = { 9, 8, 7, 6};
and then you type array[0] it will return the number 9 in the array list.
Maybe this will help you visualize easier: