If the underlying structure of the list isn't too complex you could do something like:
ReadOnlyCollection<IWebElement> listElements = listBoxElement.FindElements(By.TagName("li"));
and ...
IWebElement item = listElements[91]; // Some trial by error may be necessary depending on whether it starts at 0 or 1. Some implementations have an empty item at [0].