Task 2 runs correctly. The instructions for Task 2 say:
mplement the BirdCount.Today() method to return how many birds visited your garden today. The bird counts are ordered by day, with the first element being the count of the oldest day, and the last element being today's count.
When I look at Task 3 the number of birds is being pulled from the first element, not the last conflicting with the instructions above. Anyway I did not change my code and Task 3 fails for both tests. Two issues: first issue, assuming we are looking at the last element to get todays bird count, there is no 1 in the first test and there is no 5 in the second test. Second issue, when we resize an array, The last element is filled with a zero, and then we are looking for a 1 or 5. In both cases a zero is returned.
Am I missing something or is this a valid error.? How do I complete this lesson?