• Why is it wrong?

Question related to mission Even the Last

 

It's saying that 5*(0+2+4)=5 and i'm not understading why

def checkio(array):

if array:
    x = sum(array[:2:])*array[-1]
else:
    return 0
return x