That depends on how you access it. To control the index of the array, you can use it within a for-loop, like
for(int index = 0; index < array.length; index++)
{
//do something with array[index];
}
But if you supply for example array[2] to a function, you'll loose the array, but get the primitive of the array back. So, in your example you'll only get an int, and have lost the position within the array.
Hope this helps,
Steven.