If I have two lists such as this:
public static List<TimeSpan> times = new List<TimeSpan>();
public static List<string> names = new List<string>();
How can I combine them to get an output such as
["Bob", 00:00:02:003, "Emily",00:00:04:543]
where the names and times are displayed in correct order?