Printing associative array

Never declare an associative array with a wildcard index[*]. You can not retrieve any key values because its type is unknown. Use [int] if you mean the index to mean a 32-bit integer. Then you can use a foreach loop to iterate over the array

int array[int]

foreach(array[key]) $display("key: %d value: %d", key, array[key]);