You do not need to declare the var twice “var singleVal”, when it’s already declared you just reference it with “singleVal”, so “singleVal = array.reduce(…”. You left a line of code in that you need to remove “singleVal = array;” which modifies “singleVal” after you’ve done the mostly correct work you need to do for the exercise.