First off - I'm new at this so I'm sorry up front if I ask - dumb Q's

I'm trying to learn VB 6
Trying to put together a hangman game.
I'm working with a textbox, command button. and some labels as well as a few variables.

Private Sub Form_Load()
Dim Correct As Boolean
Dim x% 'use as counter
Dim SecretWord(8, 2)
'load secret word as an array
SecretWord(1, 1) = "L"...