Slasher Flick Issues

Hey folks,

Happy New Year! I am really struggling to fully understand what is being asked to do.

Return the remaining elements of an array after chopping off n elements from the head.

The head means the beginning of the array, or the zeroth index.

I do not get the above but I do understand that an array starts at the zero index. Am I making this harder in my head than it actually is?

Help,

Cheers,

Ben.

1 Like

I understand the instructions to be akin to this example:

You have an array of 5 elements (numbered 0-4).

If you chop off- say- 2 elements from the head (the first two are 0 and 1), it wants you to return the elements indexed as 2, 3, and 4.

2 Likes

Thanks for that I have got it now :slight_smile:

Cheers!