Issue with Project 4 from the Arduino Projects book

variable names are case sensitive

you have

int blueSensorValue = 0;

but try to read

Serial.println(BlueSensorValue);

and I am pretty sure

analogWrite(redREDPin, redValue);

is supposed to be

analogWrite(redLEDPin, redValue);