Please shrink your window size to 80% in order to fully enjoy this program! Then, press play, sit back, and watch.
xxxxxxxxxx
setup=_=>{
createCanvas(800,800)
}
draw=_=>{
a()
}
function a(){
var b,c,d,e,f,g
b=random(0,2*PI)
c=400+400*cos(b)
d=400+400*sin(b)
e=random(0,2*PI)
f=500+700*cos(e)
g=500+700*sin(e)
line(c,d,f,g)
}