What is the output of code corresponding to the following pseudocode if the user inputs 2, 3, 4, 5?
Declare Number as Integer
Declare Count as Integer
Declare Sums[5] as Integer
Set Count = 0
Set Sums[0] = 0
While Count < 4
Write "Enter a number: "
Input Number
Set Sums[Count + 1] = Sums[Count] + Number
Set Count = Count + 1
End While
While Count >= 0
Write Sums[Count]
Set Count = Count - 1
End While