app.get("/speak/:animal",function(req,res){
var animal= String(req.params.animal);
var animalSounds={
pig: "Oink",
cow: "Moo",
dog: "Woof woof"
}
var animalSound = animalSounds[animal]; //Working
var animalSound = animalSounds.animal; // Not working
res.send(animalSound);
})
When I write object inside the third bracket that works fine, but when I defined after it didn't work. Why is it not working that way?