try {
  // Make an axios call
  const response = await axios.get('https://api.example.com/data') where do i make the call to?
  // Save the value of 'keuze2' to a Zapier webhook
  await axios.post('https://hooks.zapier.com/hooks/catch/15832569/3myfjrl/', {
    keuze2: workflow.keuze2
  })
  // Set a workflow variable
  workflow.keuze2 = response.data
} catch (error) {
  console.error('An error occurred:', error)
}