Solidity "call" function with array as input

I have a function on contract A for examples : uint256[] values; function set(uint256[] _arrayToSet){ values = _arrayToSet; } It works perfectly when called directly, but I would like to call...