``` 127.0.0.1:6379> "JSON.SET" "arr" "." "[0, 1, 2, 3, 4]" OK 127.0.0.1:6379> "JSON.ARRINDEX" "arr" "." "3" "2" "-1" (error) invalid digit found in string 127.0.0.1:6379> "JSON.ARRINDEX" "arr" "." "3" "2" "0" (integer) -1 ``` Both calls should return ``` (integer) 3 ```
Both calls should return