The title is not clear, let me explain.
If I have two elements of equal value in a List and I wanna get the index of the second one, how would I do it?
list = [
        "foo",
        "default",
        "placeholder",
        "foo"         -> this is the one I need
       ]
list.index("foo") returns 0, I need the index of the second "foo" in the List.
