does js support multiple returns? 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