My program is supposed to display a randomly generated sentence on the screen (something like a screensaver) Then 'wait' for a random period between 1 and 5 minutes before cycling through to generate another sentence.
How do I do that?

Code:
Do
~~generate sentence
~~Display and speak sentence <---(I don't have a clue how to do either of those)
            Dim Seconds As Integer
            Dim MS As New Random
            Seconds = MS.Next(60, 300)
            Seconds = (Seconds * 1000)
            'WAIT(Seconds)
Loop