I need complete the function named seed that returns its arguments in an array. That is, if the function is called with three arguments (seed(a,b,c)) it should return an array containing the three arguments ([a,b,c]).
You could use Array.from to convert the arguments object to an array:
Array.from
arguments
function seed() { return Array.from(arguments); }