I need to get the inner text and then what index it is in the list.
Is there a way to do this inline without me having to foreach over the list and setting it?
var teamNameOrder = doc.DocumentNode.SelectNodes(string.Format("//*[contains(@class,'{0}')]", "hide-mobile")).Select(s => new { InnerText = s.InnerText, Index = 0 }).ToList();