Multiple Microphone sound detector to control LED lights

Hi guys ,

My project requires me to create a sound detector where when the micro-phone picks up noise of a certain threshold , it will light up an LED light bulb.However , currently i am facing some difficulties in lighting up the LED lights when i connect 5 microphone to the arduino uno . For example , Micro- phone A is connected to BLUE LED , Micro - phone B is connected to Green LED and Micro-Phone C is connected to RED LED. So , my task is when i speak to micro phone A , ONLY BLUE LED will light up and the rest of the LED remain off. Same goes to Micro- phone B and C. The LED lights will only light up when the micro-phone the LED light is assigned to , detects a voice or a sound. \

Below is my code, PLS PLS HELP ME!!!

//========================================================================================================================================
const int analogPin = A0; // pin that the sensor is attached to
const int analogPin1 = A1; // pin that the sensor is attached to
const int analogPin2 = A2; // pin that the sensor is attached to
const int analogPin3 = A3; // pin that the sensor is attached to
const int analogPin4 = A4; // pin that the sensor is attached to
char separator = '\t';

//========================================================================================================================================

const int ledPin = 13; // pin that the LED is attached to
const int ledPin1 = 12; // pin that the LED is attached to
const int ledPin2 = 11; // pin that the LED is attached to
const int ledPin3 = 10; // pin that the LED is attached to
const int ledPin4 = 9; // pin that the LED is attached to

//========================================================================================================================================

const int threshold = 430; // an arbitrary threshold level that’s in the range of the

//========================================================================================================================================

void setup()

{

Serial.begin(57600); // initialize serial communications:

pinMode(ledPin, OUTPUT);// initialize the LED pin as an output:
pinMode(ledPin1, OUTPUT);// initialize the LED pin as an output:
pinMode(ledPin2, OUTPUT);// initialize the LED pin as an output:
pinMode(ledPin3, OUTPUT);// initialize the LED pin as an output:
pinMode(ledPin4, OUTPUT);// initialize the LED pin as an output:

}

//========================================================================================================================================

void loop()

{

int analogValue = analogRead(analogPin); // read the value of the potentiometer:
int analogValue1 = analogRead(analogPin1);
int analogValue2 = analogRead(analogPin2);
int analogValue3 = analogRead(analogPin3);
int analogValue4 = analogRead(analogPin4);

if (analogValue > threshold)

{
digitalWrite(ledPin, HIGH);
}

else
{
digitalWrite(ledPin, LOW);
}

//========================================================================================================================================

if (analogValue1 > threshold)

{
digitalWrite(ledPin1, HIGH);
}
else
{
digitalWrite(ledPin1, LOW);
}

//========================================================================================================================================

if (analogValue2 > threshold)

{
digitalWrite(ledPin2, HIGH);
}

else
{
digitalWrite(ledPin2, LOW);
}

//========================================================================================================================================

if (analogValue3 > threshold)

{
digitalWrite(ledPin3, HIGH);
}

else
{
digitalWrite(ledPin3, LOW);
}

//========================================================================================================================================

if (analogValue4 > threshold)

{
digitalWrite(ledPin4, HIGH);
}

else
{
digitalWrite(ledPin4, LOW);
}

//========================================================================================================================================

Serial.print(analogValue);// print the analog value:
Serial.print("\t");
delay(1);
Serial.print(analogValue1);
Serial.print("\t");
Serial.print(analogValue2);// print the analog value:
Serial.print("\t");
delay(1);
Serial.print(analogValue3);
Serial.print("\t");
Serial.print(analogValue4);// print the analog value:
Serial.println("\t");
delay(1);
// delay in between reads for stability

}

PLS PLS HELP ME

Aside from being deaf, and unable to post code correctly, what is your problem?

what is your problem?

Cross-posting, but I've deleted the other one.