What does this program print?

from Collections
C# 14 / .NET 10 beginner 2 min

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"]}");
Open in playground
Report an error