Problem with display of results via the serial monitor

I have first code in Arduino, but when I click to display the results through the serial monitor, so he does not show any bye. Why? :confused:

void setup() {
  // initialize serial communication at 9600 bits per second:
  Serial.begin(9600);
}

// the loop routine runs over and over again forever:
void loop() {
  Serial.println("hello");
  delay(1);        // delay in between reads for stability
}

See nothing wrong with the code... Did you program it? Did you got an error?