Array slice on partially overlapping array

Setup

Selector: $[1:10]

["first", "second", "third"]

Results

Consensus

[
  "second",
  "third"
]

Other responses

Clojure (json-path) ¹

"second"

Elixir (jaxon)

[]

Ruby (jsonpath)

[]

Errors

Golang (github.com-oliveagle-jsonpath) ¹

index [to] out of range: len: 3, to: 10

Footnotes