Code Breaker: Challenge #10 _

Difficulty Level: 3 Padlocks

Your score: 1700 pts

Check the following pseudo-code to work out the passcode needed to complete this level:
FUNCTION reduce(text)
   newText = LEFT(text,2) + RIGHT(text,2)
   RETURN newText
END FUNCTION

BEGIN
password = "457892060"
passcode = reduce(password)
passcode = LEFT(passcode,4)
OUTPUT passcode
END
Enter your passcode:
ERROR
SUCCESS
1
2
3
4
5
6
7
8
9
0