Exit status 1

Hey I am working on a school project and I want to test if it is working or not, it's not a big code for now.
I am trying to make a kind of Tetris on the arduino but I have to get to there with small steps. For some reason I get the Exit status 1 error and I don't know why. Can somebody help me?

This is the code (in Dutch)

//Zeggen welke pin bij wat hoort.
int Data = 2;
int Store = 3;
int Shift = 4;
int Links = 5;
int Rechts = 6;

void setup() {
//zeggen wat een input en wat een output is.
pinMode(Data, OUTPUT);
pinMode(Store, OUTPUT);
pinMode(Shift. OUTPUT);
pinMode(Links, INPUT);
pinMode(Rechts. INPUT);

}

void loop() {
pinMode(Data, HIGH);
pinMode(Rechts, LOW);
delayMicroseconds(10);
pinMode(Shift, HIGH);
delayMicroseconds(10);
pinMode(Shift, LOW);
}

(deleted)

pinMode(Shift. OUTPUT); Comma, not point

Exit status 1 is the end of any error message. Scroll up in the console part of the window to see the rest of the error, which will tell you the line where the error occurred (or, rather, where it realized there was a problem - in some cases the problem is a few lines earlier) and a sometimes cryptic description of the error.

Thanks guys it worked! I didn't look good enough with the pinMode to digitalWrite and the . instead if the,