int[] numeros = { 5, 42, 8, 11, 23, 1, 14, 30, 19, 27, 36, 2, 50, 7, 18, 9 };
int primeiro = Array.IndexOf(numeros, 19);
int segundo = Array.IndexOf(numeros, 42);
int terceiro = Array.IndexOf(numeros, 7);
Console.WriteLine($"A combinação é: {primeiro} - {segundo} - {terceiro}");