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