What does this program print?
csharp
using System;
using System.Collections.Generic;
var stock = new Dictionary<string, int>(
StringComparer.OrdinalIgnoreCase)
{
["BK-1"] = 5
};
bool added = stock.TryAdd("bk-1", 9);
Console.WriteLine($"{added}, {stock["BK-1"]}");