blue LEDPin was not declared in this scope. please help

Arduino:1.8.5 (Windows 10), Kort"Arduino/Genuino Uno"

C:\Users\Elev\Documents\Arduino\bg1 oppgaver\sketch_apr25b\sketch_apr25b.ino: In function 'void setup()':

sketch_apr25b:23: error: 'blueLEDPin' was not declared in this scope

pinMode(blueLEDPin,OUTPUT);

^

C:\Users\Elev\Documents\Arduino\bg1 oppgaver\sketch_apr25b\sketch_apr25b.ino: In function 'void loop()':

sketch_apr25b:26: error: 'redSensorValue' was not declared in this scope

void loop() {redSensorValue = analogRead(redSensorPin);

^

sketch_apr25b:26: error: 'redSensorPin' was not declared in this scope

void loop() {redSensorValue = analogRead(redSensorPin);

^

sketch_apr25b:28: error: 'greenSensorValue' was not declared in this scope

greenSensorValue = analogRead(greenSensorPin);

^

sketch_apr25b:28: error: 'greenSensorPin' was not declared in this scope

greenSensorValue = analogRead(greenSensorPin);

^

sketch_apr25b:30: error: 'blueSensorValue' was not declared in this scope

blueSensorValue = analogRead(blueSensorPin);

^

sketch_apr25b:30: error: 'blueSensorPin' was not declared in this scope

blueSensorValue = analogRead(blueSensorPin);

^

sketch_apr25b:32: error: 'redSesorValue' was not declared in this scope

redValue = redSesorValue/4;

^

sketch_apr25b:45: error: 'blueLEDPin' was not declared in this scope

analogWrite(blueLEDPin, blueValue);

^

exit status 1
'blueLEDPin' was not declared in this scope

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

Please post your full sketch. If possible you should always post code directly in the forum thread as text using code tags (</> button on the toolbar). This will make it easy for anyone to look at it, which will increase the likelihood of you getting help. If the sketch is longer than the forum will allow then it's ok to add it as an attachment. Don't put your code in some external file service like dropbox, etc. We shouldn't need to go to an external website just to help you. I do feel it's reasonable to post a link to code hosted on GitHub or similar code hosting sites since that's an platform specifically designed for this sort of thing

Please always do a Tools > Auto Format on your code before posting it. This will make it easier for you to spot bugs and make it easier for us to read. If you're using the Arduino Web Editor then you will not have access to this useful tool. I recommend using the standard Arduino IDE instead.

It's telling you that you're trying to use a lot of variables that you haven't set up. One possibility is that you're just spelling them wrong. C++ is case sensitive so redLEDPin is not the same as redLedPin or redLEDpin etc.

If you post the code you're trying to compile we'll know.

Steve