Distance sensor repetition

I took that part of the code out, and now it just displays "?" on the serial monitor. Here is my code:

const int buzzPin = 11;
const int trigPin = 9;
const int echoPin = 10;
long duration;
int distance;


void setup() {
  pinMode(trigPin, OUTPUT);
  pinMode(echoPin, INPUT);
  Serial.begin(9600);
  pinMode(buzzPin, OUTPUT);
}

void loop() {
  // Clears the trigPin
  digitalWrite(trigPin, LOW);
  delayMicroseconds(2);

  // Sets the trigPin on HIGH state for 10 micro seconds
  digitalWrite(trigPin, HIGH);
  delayMicroseconds(10);
  digitalWrite(trigPin, LOW);

  // Reads the echoPin, returns the sound wave travel time in microseconds
  duration = pulseIn(echoPin, HIGH);

  // Calculating the distance
  distance= duration*0.034/2;

  // Prints the distance on the Serial Monitor.  Click on the button on the top right corner of the Arduino screen.
  Serial.print("Distance: ");
  Serial.println(distance);


  
  
  }