Turn List project help!!

Thanks for response. The way of storing the list is what i haven't been able to find. The F numbers correspond to a person who will receive the job manually and then press there button to take them off the list it is to keep track of who's turn is next once returning from a job at work.

int F1 = 6
int F2 = 7
int F3 = 8
int F4 = 9
int F5 = 10
int F6 = 11
;

void setup() {
// put your setup code here, to run once:
Serial.begin(9600)
pinMode(F1, INPUT)
pinMode(F2, INPUT)
pinMode(F3, INPUT)
pinMode(F4, INPUT)
pinMode(F5, INPUT)
pinMode(F6, INPUT)

}

void loop() {
// put your main code here, to run repeatedly:

}

this is all i have so far as have completed some of the simple tutorials but none have really covered what i am attempting or maybe i haven't interoperated it correctly.