const colorConfig = {
red: true,
blue: false,
green: true,
black: true,
yellow: false,
}
const colors = ["pink", "red", "blue"]
console.log(colorConfig.colors[1]) // 1 undefined
// console.log(colorConfig[colors[1]]) // true