Hi, you can try to use Foreach method.
Using this method you can get the key and value separately. Then insert them into the columns you want to use.
For example:

pageextension 50100 MyExtension extends "Customer List"
{
trigger OnOpenPage()
begin
Test();
end;
local procedure Test()
var
Dict: Dictionary of [Text, Integer];
KeyText: Text;
IntValue: Integer;
begin
Dict.Add('a', 0);
Dict.Add('b', 2);
Dict.Add('c', 3);
foreach KeyText in Dict.Keys do begin
Message(Format(KeyText));
Message(Format(Dict.Get(KeyText)));
end;
end;
}
Hope this helps.
Thanks.
ZHU