Unlock this challenge:
What is the correct way to create variables in PHP?
catName = 'Ponka'; catAge = 14;
$catName = 'Ponka'; $catAge = 14;
$catName == 'Ponka'; $catAge == 14;
$catName = 'Ponka' $catAge = 14;