What is printed?var dict = new Dictionary<string, int> { ["a"] = 1 }; bool ok = dict.TryGetValue("z", out int val); Console.WriteLine($"{ok} {val}");