using System.Collections.Generic;
public static void Main()
Console.WriteLine("This will jumble the letters in the words... ");
Console.Write("Please enter a sentence:");
string sentence [] = Console.ReadLine().Split().ToArray();
Random rnd = new Random();
for (int i=0; i < sentence.Length ; i++)
rnds = rnd.Next(1, sentence.Length-1);
if (i = 0 || i = sentence.Lengtht-1)
string newSentence[i]=sentence[i];
if (newSentence[rnds]=null)
newSentence[rnds] = sentence[i];
foreach (item in newSentence)