I should be able to write a function to determine if a seat is selectable or not ``` seatSelectable: (seat) => { if seat.status == "booked" { return False; } return True; } ```