I'm a LINQ newbie...seen lots of code examples here but have no clue how to do it.

Let's say I've got this list(of string)...

Code:
        BookAbbrList = New List(Of List(Of String)) From {
            New List(Of String)({"Genesis", "gen"}),
            New List(Of String)({"Exodus", "exo"}),
            New List(Of String)({"Leviticus", "lev"}),
            New List(Of String)({"Numbers", "num"}),
            New List(Of String)({"Deuteronomy", "deu"}),
            New List(Of String)({"Joshua", "jos"}),
How could I take the "abbreviations" - gen, exo, lev - and return the BOOK NAME...

tia