Looks like the response format could have changed slightly. Fixed if one changes this... ```javascript const locationdata = JSON.parse(response.data.split('\n').slice(1, -1).join('')); ``` ... to this: ```javascript const locationdata = JSON.parse(response.data.split('\n')[1]); ```
Looks like the response format could have changed slightly.
Fixed if one changes this...
... to this: