How do I Place Images Inside a Table?

Could someone please show me how I can place images inside a table?  I have looked everywhere on the site and it seems like all the tutorials show you how to place names and numbers inside a table, but what about images?  For example, how could I create a table and place the 2 images below into them to be referenced later on in my code?  Thanks for the help.

            page2Ref1 = display.newImageRect ( “images/page2ref1.png”, 143, 263 )
            page2Ref1.x = 680
            page2Ref1.y = 319
            page2Ref1.isVisible = false
            sceneGroup:insert (page2Ref1)

            page2Ref2 = display.newImageRect ( “images/page2ref2.png”, 178, 51 )
            page2Ref2.x = 437
            page2Ref2.y = 539
            page2Ref2.isVisible = false
            sceneGroup:insert (page2Ref2)

local page2Ref = {}

page2Ref[1] = display.newImageRect(“images/page2ref1.png”, 143, 263 )

sceneGroup:insert (page2Ref[1])

page2Ref[2] = display.newImageRect ( “images/page2ref2.png”, 178, 51 )

etc.

Rob

Rob, your a genius!  Thank you.

local page2Ref = {}

page2Ref[1] = display.newImageRect(“images/page2ref1.png”, 143, 263 )

sceneGroup:insert (page2Ref[1])

page2Ref[2] = display.newImageRect ( “images/page2ref2.png”, 178, 51 )

etc.

Rob

Rob, your a genius!  Thank you.