HEX
Server: nginx/1.18.0
System: Linux srv01 5.15.0-171-generic #181-Ubuntu SMP Fri Feb 6 22:44:50 UTC 2026 x86_64
User: RaviMohan (1026)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/AkaalCreatives/.codeium/university/base/autocompleteAcceleration.txt
// Sandbox code for Codeium Autocomplete: Acceleration.

// STEP 1: Create a Species enum.

// STEP 2: Add species to Pet.
class Pet {
    name: string;
    age: number;
 
    constructor(name: string, age: number) {
        this.name = name;
        this.age = age;
    }
}
 
// STEP 3: Assign each pet a species.
const myDog = new Pet('Spot', 5);
const myCat = new Pet('Choco', 3);
const myBird = new Pet('Birdie', 1);

// STEP 4: Print each pet in a for loop.