#region Desvendando Codigo
int[] numeros = { 5, 42, 8, 11, 23, 1, 14, 30, 19, 27, 36, 2, 50, 7, 18, 9 };
int primeiroDigito = Array.IndexOf(numeros, 19);
int segundoDigito = Array.IndexOf(numeros, 42);
int terceiroDigito = Array.IndexOf(numeros, 7);
Console.WriteLine($"Combinacao do cadeado: {primeiroDigito}-{segundoDigito}-{terceiroDigito}");
#endregion