Object Oriented Programming (Course 1)
Methods that Do work
  Start your All-Access Pass to unlock this challenge
Buy Access Login

Challenge 1 / 1

Check out this class:

class Animal {
    public $species = "Lion";

    public function getSpecies()
    {
         return $this->species;
    }
}

How could we improve getSpecies() to allow it to return an uppercase version of the species?

Skip challenges and go to theNext Chapter

Turn Challenges Off?

All further challenges will be skipped automatically.
You can re-enable challenges at any time on this page or from your account page.