I'm trying to store all my answers to a question in a two-dimensional array. But I'm getting the problem: "An array initializer of length '13' is expected".
I've tried changing the syntax but haven't found any way that it works.
string[,] answerCombinations; 
            answerCombinations = new string[,]
            {
                {
                    "kanes",
                    "skean",
                    "snake",
                    "sneak",
                    "kane",
                    "kens",
                    "sank",
                    "kaes",
                    "keas",
                    "sake",
                    "anes",
                    "sane",
                    "naes"
                }, 
                {
                    "more",
                    "omer",
                    "mor",
                    "rem",
                    "rom",
                    "ore",
                    "roe",
                    "emo"
                }
            };
 
     
    