Hi all, I would like to ask whether if the local variable is using the reference of the outer enumerable instead of copying and creating a new array? ``` var chunks = items.Chunks(1000); foreach(var chunk in chunks) { var itemChunk = chunk; Task.Run(() => { Console.WriteLine(itemChunk.Length); ... }); } ```