TLDR All letters in a constant must be in uppercase letters. That is the way it is. ```php <?php
class Weather{
private const location = "HERE"; public function getTemperature(int $day):String{ return API::GET(location)->toString(); } }