Not displaying anything | NOOBS help!

Hello there,
it's my first day to Arduino and Arduino programming. I'm learning the basic code from the internet. I wrote this code.

int led = 9;           // the PWM pin the LED is attached to
int brightness = 100;    // how bright the LED is
int fadeAmount = 5;    // how many points to fade the LED by
int check = 0;
int remainder = 0;

void setup() {
  // declare pin 9 to be an output:
  pinMode(led, OUTPUT);
  Serial.begin(9600);
  
}
void loop() {
     check ++;
    Serial.print(check);
    Serial.print(" ");

}

But it's not displaying any check value as its showing others internet. Why? :o

Did you open the serial monitor?

...and do you have the baud rate set to 9600 to match your code?

What everyone else said.

Open the serial monitor with shift-apple M (if you are on a mac). Make sure the baud rate in the dropdown menu matches the baud rate in your sketch - 9600.