function createZoo(): Animal[] {
    return [new Rhino(), new Elephant(), new Snake()];
}