private static NFLPlayer GetKicker(string teamCode)
 {
     var team = new NflTeam(teamCode);
      team.SetKicker();
      return team.Kicker;
 }