private string ValidateWord(string str) { if (!WordsHelper.IsValidWord(str)) { return("Please enter a word"); } return(string.Empty); }