Although not writing this procedure for you, I can give you a few hints.
First a tip :)
you are working with the "old style" of data storing and reading.
It could be better if you actually made a typed record of your needed information.
Afterwards, easier to read or write individual records from/to disk instead of like now, you have to read or write from beginning to end of file.
Anyway. The commands for reading from file is the same as reading from the Console.
You just use READLN in order to read a whole line in your textfile
your assign command is ok :-) Assign(currentfile, ............
Now consider this use of 'currentfile' :-)
READLN(currentfile,Name);
READLN(currentfile,Age);
As for putting information into an array, I would strongly suggest making this as a typed record due to much better filehandling abilities later.
The only advantage I can see about keeping it as a pure textfile is that you can open the file with notepad and look at and also edit stored data very easily.
Consider:
TYPE
persona = RECORD
Name : STRING;
Age : BYTE; // No person to my knowledge can be older than 255 years.
END; // you must however convert textinput into number. StrToInt() is your command for this.
VAR
Persons : ARRAY[0..100] OF Persona;
DataFile: FILE OF Persona;
Other useful commands to you would be SEEK.
Example :
SEEK(DataFile,0) // positioning the read or write to the first record in your file.
SEEK(DataFile,7) // similar, but now 8th record in your file.
http://delphi.about.com/od/fileio/a/fileof_delphi.htm
has got more information and I am sure you manage.
Good luck, and if this is too advanced, then please write a note about it and I will see if I can find time to make you some better proper examples.