OK guys, I found it... I just have to call the «apply» method of my function with the new collection of parameters. :)
Code:
function abc(a, b, c, d, e) {
console.log(a, b, c, d, e);
}
function xyz() {
var a = $A(arguments);
a.push(4);
abc.apply(null, a);
}
xyz(1,2,3);