hello everyone
I'm trying to write a csv file and save the values into a 2dimensional-array.
In the csv-file is: ruedi;200;
hans;700;
peter;390;
bob;550;
hubert;399;
but when I print out the array, it prints like that:
200
hans
ruedi
390
bob
700
peter
399
550
hubert
I think it saves the values wrong, can anybody help me?