If you want to create an array and assign individual values to each item within that array, is this done by declaring the array and then declaring each individual variable within the array separately? :
let animals = [
"cat",
"dog"
];
let cat = "kitty";
let dog = "doggy";
If this is the correct method, then how would you call an item from the array using, for example, animals[Math.floor(Math.random() * animals.length)] but get the value of the individual variable (e.g. "kitty") and not just the variable name (cat)?