loadVars to array problem

I couldn’t quite find what I wanted on the forums, but if you know a link or can answer my problem, I’d appreciate it.

Here’s what I’ve got…

Flash File

filelister = new LoadVars();
filelister.onLoad = function() {
	this.pArray = pics.split(",");
};
filelister.load("reader.txt");

reader.txt
pics=image1.jpg,image2.jpg,image3.jpg,image4.jpg,image5.jpg

Where am I messing up?