timezone
anyone knows how to set up the timezone to the voiceflow chatbot? Do you have any code or something?

const offsetInHours = 5
const adjustedDate = new Date()
adjustedDate.setHours(adjustedDate.getHours() + offsetInHours)
const hours = adjustedDate.getHours()
// Create this var in VF
officeHours = hours >= 9 && hours < 20 ? 'TRUE' : 'FALSE'