Start your All-Access Pass to unlock this challenge
Check out the following code:
{# homepage.twig #} <h1>{{ product.name }}</h1>
If you see the following error, what's the likely cause?:
Item "name" for "" does not exist in homepage.twig
homepage.twig
The product variable might be null, instead of an object
product
There might not be a name property on the product object
name
There might not be a getName() function on the product object
getName()
The product variable might be an array, but we're treating it like an object