How to use a specific number from a list?

Lets say I have the list [9,4,6,3,2,9,7], and slider “a”. When slider “a” is 3, I want to get the third number from the list. (here it would be 6). How would I do this?

Nevermind!

Exactly! : )
I’m not sure if you can do it without using a graph component.

For lists in CL, you can use the .elementAt() function at the end of a list. So L[3] in the graph would be L.elementAt(3) in CL.