public static void Main()
Console.WriteLine("Geef je woord in");
string woord = Console.ReadLine();
char[] woordInLetters = new char[woord.Length];
for (int i = 0; i < woord.Length; i++){
woordInLetters[i] = woord[i];
for (int j = woord.Length - 1; j >= 0; j--){
Console.WriteLine(woordInLetters[j]);