Attaching inner functions that use the same random number to related button click events js

I’m working on a game that will take a random object, and use that same random object for a series of questions/functions. I’m having trouble getting the next piece of code to run after clicking the “Begin” button. Most basically (and I know it’s still a lot sorry):

repo: https://github.com/ChristinaBohn/botany-game

const button = document.querySelector('#button')

const objects = [
  {
    id: 0,
    name: "Object",
    "first question": {
       "button text": "button text",
       "button function": "outerFunction.innerFunction2"
     },
    "second question": {
       "button text": "button text",
       "button function": "otherFunction"
     }
   }
]

const actions = [
  {
    name: "welcome",
    "button text": "button text",
    "button function": "outerFunction.innerFunction1"
  }
]

function useRandomIndex() {
  let randomIndex = Math.floor(Math.random() * 3);
  let currentObject = objects[randomIndex];

  function innerFunction1() {
    button.innerText = currentObject["first question"]["button text"][0]
    button.onclick = currentObject["first question"]["button function"][0]
  }

  function innerFunction2() {
    button.innerText = currentObject["second question"]["button text"][0]
    button.onclick = currentObject["second question"]["button function"][0]
  }

  button.onclick = useRandomIndex.innerFunction1
  return { innerFunction1, innerFunction2 }
};

const outerFunction = useRandomIndex();

function update(action) {
  button.innerText = action["button text"][0]
  button.innerText = action["button functions"][0]
}

function welcome() {
  update(actions[0])
}

functions['outerFunction.innerFunction1'] = outerFunction.innerFunction1;
functions['outerFunction.innerFunction2'] = outerFunction.innerFunction2;
functions['update'] = update;
functions['welcome'] = welcome;

welcome();
 

I’ve tried initializing the buttons inside the outerFunction and the game immediately jumps to the innerFunction1 step, but with the button initialized outside it gets stuck on the welcome page.

Any help is appreciated and I’m very new to this so please be gentle, don’t be afraid to overexplain -thanks!