public string[] Get(int start)
        {
            CustomLogger.LogInformation("Get FizzBuzz list: " + start);

            string[] list;

            try {
                list = fbm.getList(start);
            } catch (CustomException e) {
                CustomLogger.LogError(e.Message);
                list = new string[] { "error, see log for details: " + CustomLogger.GetLogPath() };
            }

            return(list);
        }