To get the Arduino to print your name to the Serial Terminal, you first need to initialize the Serial object with Serial.begin(9600); . Then, in loop() , call Serial.println("YOUR NAME"); followed by a delay to wait for 1 second:
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Shawn");
delay(1000);
}
Simulator: https://tinkercad.com/things/40Vyvo0x7nz