Objective
Implement rotate_right, a helper that rotates a list to the right.
Steps
$ rotate_right([9, 8, 7, 6, 5], 2)
[6, 5, 9, 8, 7]
$ rotate_right([4, 5, 6], 4)
[6, 4, 5]
Expected files
Allowed functions
None. Write every helper yourself.

Objective
Implement rotate_right, a helper that rotates a list to the right.
Steps
$ rotate_right([9, 8, 7, 6, 5], 2)
[6, 5, 9, 8, 7]
$ rotate_right([4, 5, 6], 4)
[6, 4, 5]
Expected files
Allowed functions
None. Write every helper yourself.

Tests
Run the tests to grade your code