Please fix the provided tool call based on the issues outlined.

<tool_call>[
{'name': 'SkyScrapperSearchAirport', 'arguments': {'query': 'New York'}, 'label': 'var1'},
{'name': 'SkyScrapperSearchAirport', 'arguments': {'query': 'London'}, 'label': 'var2'},
{'name': 'SkyScrapperFlightSearch', 'arguments': {'originSkyId': '$var1.skyId$', 'originEntityId': '$var1.entityId$', 'date': '2024-08-15'}, 'label': 'var3'},
{'name': 'TripadvisorSearchLocation', 'arguments': {'query': 'London'}, 'label': 'var4'},
{'name': 'TripadvisorSearchHotels', 'arguments': {'geoId': '$var4.locationId$', 'checkIn': '2024-08-15', 'checkOut': '2024-08-18'}, 'label': 'var5'}
]</tool_call>

The following are the identified issues:
Each issue is accompanied by guidance on how to fix it.
Consider the guidance, along with the provided tool specs, and memory, to come up with the final fixed tool call.

- Parameter destinationSkyId is a required parameter for SkyScrapperFlightSearch, but it is missing.
- Possible fix: Parameter destinationSkyId can be assigned to skyId in var2 from memory.
- Parameter destinationEntityId is a required parameter for SkyScrapperFlightSearch, but it is missing.
- Possible fix: Parameter destinationEntityId can be assigned to entityId in var2 from memory.
- The assignment to parameter geoId is wrong.
- Possible fix: Parameter geoId can be assigned to geoId in var4 from memory.
