public static void Main()
Console.WriteLine("Welcome to GhosterHunter! ");
Console.WriteLine("Here are the key list that show you what you can do");
Console.WriteLine("You can look your item by pressing 'I' ");
Console.WriteLine("You can check ghost list by pressing 'L' ");
String listing = Console.ReadLine().ToUpper();
Console.WriteLine("you didn't choose the proper key");
public static void Item()
String[] item = {"Lighter", "Candle", "Smudge Stick", "Flashlight"};
foreach(string name in item)
public static void GhostList()
String[] ghost = {"Yurei", "Hantu", "Poltergeist", "Revenant"};
foreach(string name in ghost)