So just clarity, what you have there is not a spritesheet, but an array of Sprite Classes. A spritesheet is usually defined as one texture with multiple images on it, that you slice up for reference to later. You’d index into this texture at certain x,y locations with width/height to get specific sprites. Often you make spritesheets that are all exactly the same width/height of sprites for animations.
Is loading up an array of Sprites each with its own texture and all the other things a Sprite has.
That code looks like it should work, what seems to be the problem are no sprites showing up at all?
You can try changing the code to this to nail down where the problem is:
If you loading up up the correct number of sprites and your key checking code is working. Try loading up just 1 of the sprites in the letters directory and displaying it in a new Empty project. Maybe the sprite itself is messed up in some manner.
I think I was using layman nomenclature, I did indeed split a single image into multiple seperate images, rather than say using x,y coordinates to display a section of a single image.