cats = [False] * (100 + 1) it creates 101 number of cats when we need only 100 by the description. ``` >>> len([False] * (100 + 1)) 101 ``` >You have 100 cats.