my @name = ('hans','franz','peter'); my @customer = ('detlef','achim'); push @name,@customer; print join(',',@name);