I would like to convert a simple Map: { 'A' => '2', 'B' => '1', 'C' => '3' } into the following string: A2 B1 C3 What is a reasonable way to accomplish this? (Beginner)