#!/usr/local/bin/perl -wmy %cities = ("Toronto" => "East", "Calgary" => "Central", "Vancouver" => 'West');for $key (keys %cities){ print "Key: $key Value: $cities{$key} \n";}