you return the address of a local (stack-allocated) array, as the warning tells you:
warning: address of stack memory associated with local variable 'result' returned [-Wreturn-stack-address]
Loading collection data...
you return the address of a local (stack-allocated) array, as the warning tells you: