using System.Collections.Generic;
public static void Main()
Dictionary<string, int> toysSold = new Dictionary<string, int>() {
{"Gaming Consoles", 551},
toysSold.Add("GI Joe", 430);
Console.WriteLine("toysSold Dictionary ");
foreach (KeyValuePair<string, int> word in toysSold)
Console.WriteLine($"{word.Key} price ${word.Value}");