How to make this transformation?
[\"a\",\"b\",\"c\",\"d\",\"e\"] // => [\"c\", \"d\", \"e\"]
I was thinking that slice can
slice
["a","b","c","d","e"].slice(-3) => ["c","d","e"]