The problem – and it’s a common one! – is that you included the [gear list] block in front of your variables that are already lists. So in effect, you created a list of a list. Where you wanted {“a”,“b”,“c”} you actually created {{“a”,“b”,“c”}} which just throws everything off.
I seriously wish the [gear list] block had some warning message that showed up when you tried to drag it onto the screen. It’s almost never needed! The exception is if you are initializing or setting a list’s contents. Otherwise, no need to use it… the variable you have is already formatted as a list.
You’re welcome. You’d typically use the insert at last block unless you need to insert it into a specific place such as the 4th item of a list of eight items. See this: Lists - Thunkable Docs