gawk: Assigning Elements

1 
1 8.1.3 Assigning Array Elements
1 ------------------------------
1 
1 Array elements can be assigned values just like 'awk' variables:
1 
1      ARRAY[INDEX-EXPRESSION] = VALUE
1 
1 ARRAY is the name of an array.  The expression INDEX-EXPRESSION is the
1 index of the element of the array that is assigned a value.  The
1 expression VALUE is the value to assign to that element of the array.
1