The first thing is to decide where to store your array data, in code, an ini file or in a database. For the purposes of simplicity we will use code an two simple arrays, one for the question (surname) and one for the answer (first name).
At module level in the form define the following
Private strSurnames(2) as String
Private strFirstName(2) as String
On form load do the following strSurname(0) = "Dillon"
strFirstName(0) = "Bob"
strSurname(1) = "Lennon"
strFirstName(1) = "John"
strSurname(2) = "Jagger"
strFirstName(2) = "Mick"
Then in a function for the start button do the following For i = 0 to uBound(strSurname)
strAnswer = trim$(inputbox("Enter the first name for " & strSurname(i)))
If LCase(strAnswer) = LCase(strFirstName) Then
intScore = intScore + 1
End If
Next i
That should cover the basics
Cheers
D