match i {
list.len() - 1 => format!("And all for the want of a {}.", list[0]),
_ => format!("For want of a {} the {} was lost.", list[i], list[i + 1])
}
how can I do the second line works using dot: list.len() - 1
without use a _ if a == list.len() - 1