Write a code snippet to cyclically shift the elements of an integer array numbersArray to the right by two positions. Assume the following variables have been declared:
An int array numbersArray, which has also been initialized with some values;
An int variable arraySize for the number of elements in numbersArray.
Your task is to ensure that all elements are moved two positions to the right, with the last two elements moved to the beginning of the array.