Hi,
if you wanna get text from the element number 01, you can use: select.get(0).getText();
The 2nd, select.get(1).getText();
The 3rd: select.get(2).getText();
If you wanna to click on the element number 01. select.get(0).click();
I think you can get the idea.
Hopefully it helps you.