HELP ME esp8266 and read analog

i wanted to see the sensor value output in the serial monitor.

Next, you have add a new device to cayenne dashboard using Adding a New Device using MQTT
Once you device is connected, upload the below code,

#define CAYENNE_DEBUG
#define CAYENNE_PRINT Serial
#include <CayenneMQTTESP8266.h>
// WiFi network info.
char ssid[] = "ssid";
char wifiPassword[] = "wifiPassword";

// Cayenne authentication info. This should be obtained from the Cayenne Dashboard.
char username[] = "MQTT_USERNAME";
char password[] = "MQTT_PASSWORD";
char clientID[] = "CLIENT_ID";

int sense_Pin = 0; // sensor input at Analog pin A0

int value = 0;
void setup() {
  Serial.begin(9600);
  Cayenne.begin(username, password, clientID, ssid, wifiPassword);

}
void loop() {
  Cayenne.loop();
  Serial.print("MOISTURE LEVEL : ");
  value = analogRead(sense_Pin);
  value = value / 10;
  Serial.println(value);

}
CAYENNE_OUT_DEFAULT()
{
  Cayenne.virtualWrite(1, value, "analog_sensor", "null");
}