I want to split this line because its too long.
ticketText = `*Environment:*\n${values["environment"]}\n\n*Observed on:*\n${values["observedOn"]}\n\n*Description:*\n${values["description"]}\n\n*Steps:*\n${steps}\n\n*Attachments:*`
I tried this but its adding space at the beginning of Observed on and Steps.
ticketText = `*Environment:*\n${values["environment"]}\n\n
*Observed on:*\n${values["observedOn"]}\n\n*Description:*\n${values["description"]}\n\n
*Steps:*\n${steps}\n\n*Attachments:*`