Modifying Elements
Individual elements of the array can also be modified using subscripts. array [4] = 20 ; /*changes the value of the element found at subscript 4 to 20 */
Values may be stored in an array using indexing, rather than using the array initializer.