Hello, i'd like to make an app that allows me to add activities that have things to do in them, so think an array called thingstodo and in it i can add different activities, within them different strings.
then i need to randomly choose a string to pull from those activities, say "game development" from the array i created called "productivity".
then i need to display that randomly chosen string from within the arrays i created to generate from, and display them in UI.
i dont know how to use arrays in godot in a multidimensional way, or use dictionaries like this.
thank you for reading 🙏

    Vadkline you can use them in the same wahy they are use in python...

    var arr1 = [1,2,3,55]
    var arr2 = [3,5,6,7]
    
    arr2[0] -> 3