using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
string[] targets = new string[]{"Apple","Bread","Chair","Dance","Eagle","Flute","Green","Heart","Image","Jolly","Knife","Light","Maple","North","Ocean","Plant","Queen","River","Solar","Tiger","Umbra","Venus","Water","Xylem"};
Random dice = new Random();
string target = targets[dice.Next(0,targets.Length - 1)];
string targetString = target.ToUpper();
char[] feedback = new char[5];
Console.WriteLine(targetString);
for(int i = 0; i < 5; i++)
userString = Console.ReadLine();
for(int c = 0; c < 5; c++)
if (userString[c] == targetString[c])
else if (targetString.Contains(userString[c]))
foreach(char c in feedback)
if (userString == targetString)
Console.WriteLine($"\n{targetString} found");