What does this program print?

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

What does this program print?

csharp
using System;

Console.WriteLine(Pick(3, 7));
Console.WriteLine(Pick("queued", "sent"));

static T Pick<T>(T first, T second) => first;
Open in playground
Report an error