my %info = ( address => '123 Main', city => 'Anytown' ); $info{name} = "Bill"; #### %info .= ( name => 'Bill' ); OR push ( %info, 'name' => 'Bill' );