hi ken,marla is right. the ellipses are intended to indicate that it is possible (but not required by the snippet itself) to load additional AMD modules.when you load another unrelated module, you would also refer to that module with a corresponding argument alias.
require([
"esri/graphic", "esri/secondModule"
], function(Graphic, secondModule ) {
var myLine = {geometry:{"paths":[[[-91.40625,6.328125],[6.328125,19.3359375]]],
"spatialReference":{"wkid":4326}},
"symbol":{"color":[0,0,0,255],"width":1,"type":"esriSLS","style":"esriSLSSolid"}};
var gra = new Graphic(myLine);
...
});
see this blog for more info