Given an array of integers 'numbers,' distribute all its integers between two arrays, 'first' and 'second.'
a) Move all even numbers to 'first' and odd numbers to 'second.'
b) Move all positive numbers to 'first' and negative numbers to 'second.'
c) Distribute numbers randomly between 'first' and 'second.'
d) Move prime numbers to 'first' and composite numbers to 'second.'