Membership
is a class. Calling methods though it is only allowed if the method is static. Your getMonth
method isn't static, so you will need an instance of the Membership
class to call it. You already have a list of instances in your Club
class, so pick one of those and call getMonth
on it.