How can I fill an array with string values from an InputBox and then display that in a ListBox?

Code:
Public Class frmQuiz
    Dim strQuestions(10) As String
Private Sub btnQuestion2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnQuestion2.Click
        Dim strQuestion2 As String
        strQuestion2 = InputBox("What is the last name of the player who many consider to be the best
...