Error messages in creating a ColorMixingLamp

So this is my code:

const int greenLEDPin = 9;
const int redLEDPin = 11;
const int blueLEDPin = 10;
const int redSensorPin = A0;
const int greenSensorPin = A1;
const int blueSensorPin = A2;

int redValue = 0;
int greenValue = 0;
int blueValue = 0;
int redSensorValue = 0;
int greenSensorValue = 0;
int blueSensorValue = 0;

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

pinMode(redLEDPin, OUTPUT);
pinMode(greenLEDPin, OUTPUT);
pinMode(blueLEDPin, OUTPUT);
pinMode(redSensorPin, INPUT);
pinMode(blueSensorPin, INPUT);
pinMode(greenSensorPin, INPUT);

}

void loop() {
redSensorValue = analogRead(redSensorPin);
delay(5);
greenSensorValue = analogRead(greenSensorPin);
delay(5);
blueSensorValue = analogRead(blueSensorPin);

redValue = redSensorValue / 4;
blueValue = blueSensorValue / 4;
greenValue = greenSensorValue / 4;

Serial.print("Mapped Sensor Values \t Red; ");
Serial.print(redValue);
Serial.print("\t Green; ");
Serial.print(greenValue);
Serial.print"\t Blue; ");
Serial.print(blueValue);

analogWrite(redLEDPin, redValue);
analogWrite(greenLEDPin, greenValue);
analogWrite(blueLEDPin, blueValue);
}

I received these errors:

ColorMixingLamp.ino: In function 'void loop()':
ColorMixingLamp.ino:42:15: error: expected ';' before string constant
ColorMixingLamp.ino:42:27: error: statement cannot resolve address of overloaded function
Error compiling.

Why?

ColorMixingLamp.ino:42:15: error: expected ';' before string constant

This means line 42 in your program, which is easier for you to count than it is for us.