In line 701, when marker.title is not set. ``` javascript marker.title = response.formatted_address; ``` You should replace with the following: ``` javascript marker.title = response[0].formatted_address; ``` because Google's geocode returns an array. :)
In line 701, when marker.title is not set.
You should replace with the following:
because Google's geocode returns an array.
:)