Too many initializers

Hi guys,
I'm trying to cycle through some .wav files on the Teensy 3.1. I need to keep this array in the exact same order it's in now (it's organized by frequency, volume in dB, and left vs. right side). Whenever I try to compile the program, I receive an error that tells me "error: too many initializers for 'const char [14][8][12]'

I'm pretty sure I initialized this correctly... does anyone know what's going on here?
Thanks

void loop() {
  const char soundFiles[14][8][12]=
  {
    {"1250L.wav", "12510L.wav", "12520L.wav", "12530L.wav", "12540L.wav", "12550L.wav", "12560L.wav", "12570L.wav", ""},
    {"2500L.wav", "25010L.wav", "25020L.wav", "25030L.wav", "25040L.wav", "25050L.wav", "25060L.wav", "25070L.wav", "25080L.wav"},
    {"5000L.wav", "50010L.wav", "50020L.wav", "50030L.wav", "50040L.wav", "50050L.wav", "50060L.wav", "50070L.wav", "50080L.wav"},
    {"10000L.wav", "100010L.wav", "100020L.wav", "100030L.wav", "100040L.wav", "100050L.wav", "100060L.wav", "100070L.wav", "100080L.wav"},
    {"20000L.wav", "200010L.wav", "200020L.wav", "200030L.wav", "200040L.wav", "200050L.wav", "200060L.wav", "200070L.wav", "200080L.wav"},
    {"40000L.wav", "400010L.wav", "400020L.wav", "400030L.wav", "400040L.wav", "400050L.wav", "400060L.wav", "400070L.wav", "400080L.wav"},
    {"80000L.wav", "800010L.wav", "800020L.wav", "800030L.wav", "800040L.wav", "800050L.wav", "800060L.wav", "800070L.wav", "800080L.wav"},
    {"1250R.wav", "12510R.wav", "12520R.wav", "12530R.wav", "12540R.wav", "12550R.wav", "12560R.wav", "12570R.wav", ""},
    {"2500R.wav", "25010R.wav", "25020R.wav", "25030R.wav", "25040R.wav", "25050R.wav", "25060R.wav", "25070R.wav", "25080R.wav"},
    {"5000R.wav", "50010R.wav", "50020R.wav", "50030R.wav", "50040R.wav", "50050R.wav", "50060R.wav", "50070R.wav", "50080R.wav"},
    {"10000R.wav", "100010R.wav", "100020R.wav", "100030R.wav", "100040R.wav", "100050R.wav", "100060R.wav", "100070R.wav", "100080R.wav"},
    {"20000R.wav", "200010R.wav", "200020R.wav", "200030R.wav", "200040R.wav", "200050R.wav", "200060R.wav", "200070R.wav", "200080R.wav"},
    {"40000R.wav", "400010R.wav", "400020R.wav", "400030R.wav", "400040R.wav", "400050R.wav", "400060R.wav", "400070R.wav", "400080R.wav"},
    {"80000R.wav", "800010R.wav", "800020R.wav", "800030R.wav", "800040R.wav", "800050R.wav", "800060R.wav", "800070R.wav", "800080R.wav"}
  };
  int i=0;
  int j=-1;
  while(j<14){
    j=j+1;
    i=0;
    while(i<8){
      playFile(soundFiles[j][i]);
      //delay(1000);
      i=i+1;
    }
  }
}

How do I put it in the program

The Teensy 3.1 appears to have 64k of RAM so memory probably is not an issue.

https://www.pjrc.com/teensy/teensy31.html