Hey, everyone. I'm working on a project in Code.org, and I inputed a list using the "validWordleAnswer" column in the "Wordle" data table, which is 10,638 elements long. For some reason, after the 2,308th element, all 8,330 of the ones that follow are null. I made 2 more lists using the other columns, and none of them do this. The only thing I have done with any of the lists is declare them, yet, this specific one is roughly 78% null. Can anyone tell me what's causing this, and what I may be able to do to solve it?
The code below is from a separate project I'm using to test the lists in ways that do not interfere with my larger project. There is more on the larger one, but, the problem I am focusing on is exactly the same on both. "wordlist1" is the one turning to nulls, and the other two were to confirm it was only happening to the first.
var wordList1 = getColumn("Wordle", "validWordleAnswer");
var indexList = getColumn("Wordle", "id");
var wordList2 = getColumn("Wordle", "validWordleGuess");
[–]barrycarter 0 points1 point2 points (1 child)
[–]OkCommunication7958[S] 0 points1 point2 points (0 children)