//Function that returns multiple values - Using destructuring function foobar(foo, bar) { return [foo, bar]; } const [one, two] = foobar(1, 2);