Creating an array of images

HI,
I am trying to create an array of images and have used the following simple code which gives me an error.

for i=1,11 do
local fielder[i] = display.newImage( “fielder.png” )
end

I do have more code inside to et the coordinates but this simple loop still fails, what am I doing wrong.

Thanks for any help [import]uid: 7830 topic_id: 6769 reply_id: 306769[/import]

[lua]local fielder = {}
for i=1,11,1 do
fielder[i] = display.newImage( “fielder.png” )
end[/lua] [import]uid: 6645 topic_id: 6769 reply_id: 23632[/import]

Thanks jmp.

All sorted. [import]uid: 7830 topic_id: 6769 reply_id: 23683[/import]