I have build this simple module trying to construct a matrix via Table
ImagePoint[\[Sigma]_] :=
Module[{A},
A = Table[i^2 + \[Sigma], {i, 10}];
]
In[74]:= B = ImagePoint[0.67]
In[76]:= B
In[75]:= ?B
Global`B
B=Null
Doing the same but outside the module works fine:
In[78]:= DD = Table[i^2 + 0.67, {i, 10}];
In[65]:= ?DD
Global`DD
DD={1,4,9,16,25,36,49,64,81,100}
Can someone explain the difference and what am I doing wrong?

