Error: expecting primary-expression befor',' token

Hello there...
I just want get my Keypad running (4x4) and now i got this error. No idea where the mistake is.

[code]

#include <Keypad.h>



//jetzt wird die Größe des Keypads definiert
const byte COLS = 4;// 4 Spalten
const byte ROWS = 4;
byte colPins[COLS]= { 9, 8, 7, 6}; // definition der Pins für die 4 Spalten
byte rowPins [ROWS]= { 5, 4, 3, 2};
char hexaKeys[ROWS][COLS] =
{
{,D, ,E, ,0, ,*},
{,C, ,9, ,8, ,7},
{,B, ,6, ,5, ,4},
{,A,3,2,1}
};
char pressedKey; // pressedKey ab jetzt = gedrückte Taste
Keypad myKeypad = Keypad(makeKeymap(hexaKeys), rowPins, colPins, ROWS, COLS);
//Keypad wird absofot mit myKeypad angesprochen
void setup ()
{Serial.begin(9600)};

void loop()
{
pressedKey = myKeypad.getKey();// pressedKey entspricht absofort der gedrückten taste
  if (pressedKey) {
    Serial.print("Die Taste");
    Serial.print(pressedKey);
    Serial.print("wurde gedrueckt");
    Serial.println();
  }
}

[/code]

Could anyone help me pls?

{,A,3,2,1}

Why does the data start with a comma ?

The compiler told you EXACTLY where the problem is, but you chose not to share.

{,D, ,E, ,0, ,*},
{,C, ,9, ,8, ,7},
{,B, ,6, ,5, ,4},
{,A,3,2,1}

Well, what are those commas doing there, Deutchebrudder?
The compiler told you that it expected a primary expression before a comma

You have to put an expression(which, I don't think is required, owing to the requirement of a keypad is just 4x4)
or remove those commas

// this seems better...
{D ,E ,0 ,*},
{C ,9 ,8 ,7},
{B ,6 ,5 ,4},
{A, 3 ,2 ,1}

(I'm not German, freunde. Just know to speak.)