I have 2 hashes like the following
hash1:
key value
part0 company0
part1 company1
part2 company2
hash2:
key value
part0 2B
part1 4B
part2 6B
What I would like is to build a string using the 2 hashes like this "part0 company0 2B, part1 company1 4B, part2 company2 6B" (without quotes)
How can I achieve this ?