Remove Values from a List Using Unpacking

The following unpacking expression contains a mistake: the * operator is in the wrong position. Move the * operator so that the expression b + c == 90 evaluates to True.
data = [10, 20, 30, 40, 50] # adjust the following line of code
a, b, *c = data
print(b + c == 90) # expected: True
Python
Setting up Python environment...
Output