Execute both asyncFunc() and animateFunc() in parallel:
asyncFunc()
animateFunc()
const doBothAtOnce = Promise.all([asyncFunc(), animateFunc()]); await doBothAtOnce;