Introduction
In Python, we can easily remove elements from a list using slice notation. This can be useful when we want to remove a specific number of elements from the right end of a list. In this challenge, you will create a function that takes a list and an optional number of elements to remove from the right end of the list.