0
Arrays are just like variables but the only difference is that arrays can store more then one value.
Arrays have something called index which is considered as the address of each value in the array.
In java , arrays are zero indexed..it means that the first element in the array have the index 0, the second have the index 1 etc...
the magic tool to access the array is the loops such as the for loop, while loop... because in loops we have a value that always change (usually called i = iterator )...so just give the value of i to the index and access the array elements.



