Sound Detector Won't Work

Hello. I recently bought a Keyes Sound Detector for a Reactive LED Project. When I use the Sound Detector, it only detects sound when I blow into the speaker. I have used two different sensors and I've turned the pot multiple times both clockwise and counterclockwise. If anyone has any suggestions that would be much appreciated. Thinking about just buying another detector at this point. I left the code I was running to find the analog values along with a screenshot of what the serial monitor looks like below (the higher numbers occur when I blow into the sensor). Thank you :).

int sensorValue;

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

}

void loop() {
 sensorValue = analogRead(A0);

 delay (500);
 Serial.println (sensorValue,DEC);
 
 

}

Perhaps if you had studied the specifications, you would have realized the output is a digital signal indicating the sound is ABOVE the value set by the sensitivity pot. No analog output at all.

Paul