Hi I am trying to make a console app that ask the user repeatedly to input a word until the time expires. I have manage to use this for display the counter
`
for (int a = 20; a >= 0; a--)
{
Console.Write("\rTIME COUNTDOWN {0:00}", a);
System.Threading.Thread.Sleep(1000);
}`
The console will ask the user to input a word, I want to read the input and then repeat the question and read again input until the time expires.
Console.WriteLine($"insert word");
var input = Console.ReadLine();
How can I achieve this? Any help?