that's because in CSVConnector.cs the ";" is taken as separator and in your .CSV file you've chosen the "," as separator.
You have to either change the separator in your .CSV file or in the code file:
If you'd like to change the code, open CVSConnector.cs go to line 73 and alter it from
...
row[i] = csvData[j].Split(';')[i];
...to
...
row[i] = csvData[j].Split(',')[i];
...Do it in the same way at line 60.
Regards,
Tobias
Ranorex Support Team