This is a reply to the thread "How Do I Do This?". Since the thread is locked I thought I just should make a new thread

I think you should do this:
Code:
Dim A(1 To 50) As String
A(1) = "Hey!"
A(2) = "Cool!"
'etc.

'Usage:
'Replace x with a number of the array.
Msgbox A(x)
I think this is the more efficient way of doing 50 sentences...
TRY IT!