NEW TO ARDUINO #gasPin was not declared in this scope

How should I modify the program ?

sketch_feb20a.ino (112 Bytes)

void setup()
{
  Serial.begin(9600);
}

void loop() {
  Serial.println(analogRead(gasPin));
  delay(1000);
}

Define "gasPin" somewhere? like "static const gasPin = 1; // gas sensor on analog pin 1"