Sorry, question #1 should be

Write code that declares a string array with three elements, and then store your first, middle, and last name in the arrays elements.

Answer


Dim names(2) As String
names (0) = "Jamie"
names(1) = "Andrew"
names(2) = "Foster"