Sure no problem, you simply chenge the code a bit to:
//I will put the names and ages into the list where tick is added:
foreach (ListViewItem item in listView1.Items)
{
if (item.Checked)
list.Add("NAME: " + item.Text + " - AGE: " + item.SubItems[1].Text);
}