or download this
#print name doesn't work, because the entire object is #stored at $inv
+entors_array[0].
print $inventors_array[0]->{"name"}
...
$inventors_array[1]->{"name"} = "New Name";
#But I can do with an array of hashes...
$inventors_array[1]{"name"} = "New Name";