public static string[] GetRandomTopicVerses(Topic topic)
        {
            int y = 0;

            string[] output;
            int[]    verses = TopicReader.RandomTopicVerse(topic);
            try
            {
                output = new string[(verses[3] - verses[2]) + 1];
                for (int x = verses[2]; x <= verses[3]; x++)
                {
                    output[y++] = GetVerse(verses[0], verses[1], x);
                }
                return(output);
            }
            catch { output = new string[] { "No verses found with that reference." }; return(output); }
        }