$arrayreference = [{first =>1,second =>2 } , "hello ","there"]; #### print " $arrayreference->{first} \t $arrayreference->{second} \n"; >hello there print " $arrayreference->[1] \t $arrayreference->[2] \n"; >hello there