This function returns the second line of the .csv (vArray(1))
To get all the file, you coud just do :
Public vArray As String()
then
Dim vFilename As String = "C:\VSI 2019\My Game\Words4.csv"
vArray = System.IO.File.ReadAllLines(vFilename)
(and for .CSV files, it is better to use TextFieldParser Classr)