how can you output more than one values in an object using javascript code example

Example 1: can you return 2 values in javascript object

function friends(){
	var names = {
      closeCircle: ['bebo','eli','matthew'],
      outerCircle:['vierie','nate','james','george'],
    };
  	return [names.closeCircle[0], names.closeCircle[2]]
  //returns bebo and matthew
}

Example 2: javascript return multiple values from a function

//function that returns multiple values
function getTopTwoColors() {
    return ["blue", "pink"];
}
var topTwoColors=getTopTwoColors();
var firstValue=topTwoColors[0]; //get first return value
var secondValue=topTwoColors[1]; //get second return value

Example 3: javascript function multiple return

function doubleEachElement(num1, num2) {
  return [num1 * 2, num2 * 2];
}
const [a, b] = doubleEachElement(68, 100);