Help with multiple knock Sensors across 4 Analog pins...

You declared:int sensorReading[4] = {0, 0, 0, 0};but you read:sensorReading = analogRead(knockSensor);It sould be:sensorReading[i] = analogRead(knockSensor);
Work from there. How would you know which knock sensor triggered the led? there is a lot of fun comming up for you.

Jacques