Graph the points (6, -5), (4, 2), (-1, -3), and (-3, 5) on the coordinate plane.

To graph these points on the coordinate plane, follow these steps:

1. Start at the origin (0,0).
2. For each point, move right or left from the origin by the x-coordinate, and then move up or down by the y-coordinate.

Graphing the points (6, -5), (4, 2), (-1, -3), and (-3, 5), you should get this image:

[asy]
size(200);
import graph;

// Draw the coordinate plane
real xmin = -5;
real xmax = 7;
real ymin = -6;
real ymax = 6;
real step = 1;
draw((xmin,0)--(xmax,0),black+linewidth(1));
draw((0,ymin)--(0,ymax),black+linewidth(1));
for(real x = step; x < xmax; ++x)
{
draw((x,ymin)--(x,ymax),lightgray);
}
for(real x = -step; x > xmin; --x)
{
draw((x,ymin)--(x,ymax),lightgray);
}
for(real y = step; y < ymax; ++y)
{
draw((xmin,y)--(xmax,y),lightgray);
}
for(real y = -step; y > ymin; --y)
{
draw((xmin,y)--(xmax,y),lightgray);
}

// Graph the points
dot((6,-5)^^(4,2)^^(-1,-3)^^(-3,5),red);

// Label the points
label("(6,-5)",(6,-5),NE);
label("(4,2)",(4,2),NE);
label("(-1,-3)",(-1,-3),SW);
label("(-3,5)",(-3,5),NW);
[/asy]