Get the key in an array

Hello,

I have an array:


Array[1]=21
Array[2]=15
Array[3]=18

After sorting this array it looks like


Array[2]=15
Array[3]=18
Array[1]=21

I want to get the id of the first element in this array -> 2

How can I do this? :book: