what is the output of the following code in java

int ar[] = {7,14,21,28,35};
int k;
for (k=4; k>0; k--)
{
system.out.print(ar[k-1]--+",");