public IActionResult GetWords(int count)
        {
            List <string> words = null;

            words = _expressionService.GetExpressions(count);

            return(Ok(new
            {
                words
            }));
        }