To calculate the total of a list, we use sum(), with the list name between the parentheses, like sum(signups) here.
sum()
sum(signups)
Make sure to pick sum followed by ( and then signups, ).
sum
(
signups
)