//CS0266 Cannot implicitly convert type 'System.Collections.Generic.IEnumerable' to 'char[]'.
foreach(string newstr in Reversewords)
{
var strArr = newstr.ToCharArray();
char[] chaArr= strArr.Reverse(); // error in this line
sb.Append(chaArr);
}