Arrays are special kind of data which can hold many values
How we can create an array ?
using an array literal []
using the new keyword
creating an array using array literal []
creating an array using new keyword
you can store different data types in an array
you can also store functions and other objects inside an array
Accessing Array elements
array index starts from 0,1,2,3,.......so on based on the size of the array we can access array elements the last element in the array will Array[Size - 1]