public static void Main()
string[] loot = {"weapon 1", "weapon 2", "weapon 3", "weapon 4", "weapon 5", };
Console.WriteLine("Press E to Collect Loot");
string input = Console.ReadLine();
if(input=="e" || input =="E")
Console.WriteLine("You have got "+ loot[temp]);
Console.WriteLine("Invalid Input");
Random rand = new Random();