Enter the letters of the points that are below the graph of
[asy]
unitsize(0.4 cm);
pair A, B, C, D, E, F, G, H, I, J;
int i;
A = (3,3);
B = (-5,-4);
C = (-4,1);
D = (6,-1);
E = (6,6);
F = (-2,-2);
G = (-3,5);
H = (6,-6);
I = (2,4);
J = (2,-3);
for (i = -8; i <= 8; ++i) {
draw((i,-8)--(i,8),gray(0.7));
draw((-8,i)--(8,i),gray(0.7));
}
draw((-8,0)--(8,0),linewidth(1.5*bp),Arrows(6));
draw((0,-8)--(0,8),linewidth(1.5*bp),Arrows(6));
label("$x$", (8,0), NE);
label("$y$", (0,8), NE);
dot("$A$", A, SE);
dot("$B$", B, S);
dot("$C$", C, NW);
dot("$D$", D, SE);
dot("$E$", E, SE);
dot("$F$", F, SE);
dot("$G$", G, NW);
dot("$H$", H, SE);
dot("$I$", I, NW);
dot("$J$", J, NE);
[/asy]
Type your answer as a list, separated by commas. For example, if you think points and lie below the line, then enter "B, D, G".