(10%)
Determine whether the following code is correct or not. If it is
correct, predict its output. If it is incorrect, point out the
mistake(s).
# Dice Rolling
count = [ 0, 1, 1, 2, 4, 2 ]
for n in [1, 2, 2, 3, 5, 3 ]:
count[n-1] = count[n-1] + 1
for i in range(6):
print( i+1 , count[i] )