Multi-dimensional array string.

Hello,

I want to create string array with enemy names and their ranks in one array.
What have I done (and it’s not working):

string[] enemyName = {
        {"Orc", "Rider", "Mage"},
        {"Elf", "", ""},
        {"Troll", "", ""},
        {"Devil", "", ""},
        {"Imp", "", ""},
        {"Wolf", "", ""},
        {"Vampire", "", ""},
        {"Zombie", "", ""},
        {"Ghost", "", ""},
        {"Witch", "", ""},
        {"Fallen", "", ""},
        {"Dark Knight", "", ""},
        {"Dragon", "", ""},
        {"Beast", "", ""},
        {"Gremlin", "", ""},
        {"Gargoyle", "", ""},
        {"Golem", "", ""},
        {"Griffin", "", ""},
        {"Monk", "", ""},
        {"Angel", "", ""},
        {"Cerberus", "", ""},
        {"Snake", "", ""},
        {"Basilisk", "", ""},
        {"Wyvern", "", ""},
        {"Hydra", "", ""},
        {"Centaur", "", ""},
        {"Dwarf", "", ""},
        {"Harpy", "", ""},
        {"Beholder", "", ""},
        {"Medusa", "", ""},
        {"Minotaur", "", ""},
        {"Manticore", "", ""},
        {"Goblin", "", ""},
        {"Ogre", "", ""},
        {"Cyclop", "", ""},
        {"Behemoth", "", ""},
        {"Skeleton", "", ""},
        {"Wraith", "", ""},
        {"Lich", "", ""},
        {"Bat", "", ""},
        {"Black Knight", "", ""},
        {"Bonebeast", "", ""},
        {"Djinn", "", ""},
        {"Bonelord", "", ""},
        {"Rat", "", ""},
        {"Cobra", "", ""}
    };

And what I want to have is something like this:

enemyName[0, 0] == "Orc"
enemyName[0, 1] == "Orc Rider"
enemyName[0, 2] == "Orc Mage"

What I’m doing wrong here?

string [,] enemyNames = ...

However I personally would wrap the items altogether in a data class.

That did not worked, even with [,].
Data class? Could you say something more about it?

@
Found tutorial about classes.
I think i can handle it now.
Thank you so much.