Hello, so my bot has an empty array that has items pushed into it and pushed out a few hours later. Before certain ones can be pushed out however, the array becomes empty again. Here’s an example:
var array = [];
//Values get pushed in
array = ['value', 'value', 'value'];
//What I want a few hours from now:
array = ['value', 'value'];
//What happens:
array = [];
A link to your project would help, but note that if your project sleeps then any data stored in variables will be lost. If you’re wanting to store data longer-term you’d be better writing it to a file or database.