How do I make a variable equal to every item between 2 items in an array? So it would only make the variable contain the items in the array that are above the place 0 in the list.
An example of what I mean is this: let message = array[1, array.length]
So in an array like this ["dog", "cat", "fish", "snake", "elephant"]
if it was to be printed to the console it would print cat, fish, snake and elephant