Basically, take in whatever in array.of() and return an array https://developer.mozilla.org/nl/docs/Web/JavaScript/Reference/Global_Objects/Array/of
array.of()
const team = Array.of('Black Panther', 'Wolverine', 'X-23', 'Sabertooth'); console.log(team);