returnfunction()local level =getBackground();--give an array of all blocks on the current levellocal scriptBlocks =getScriptableBlocks(); log('the list of blocks on ' .. level ..' are:');for i,block inpairs(scriptBlocks) dolog(block.id);log(block.position.x ..' ' .. block.position.y);endend