[code #include <iostream>

using namespace std;

int main()
{
const int SIZE = 5;
int values[SIZE], counter, temp;
bool swap;


for (counter=0; counter<SIZE; counter++)
{
cout<<"please input a number"<<endl;
cin>>values[counter];
}

do
{ swap = false;
for (counter=0; counter<values[counter-1]; counter++)
{
if (values[counter+1]>values[counter])
{
temp=values[counter];
values[counter+1]=values[counter];
values[counter]=temp;
swap=true;
}
}
while(swap);
}
return 0;
}
/CODE]

IT'S GIVING ME 1 ERROR

"error C2059: syntax error : 'return'"

I'VE BEEN AT IT FOR A COUPLE OF HOURS, I KNOW THE MISTAKE IS SIMPLE, BUT I JUST CAN'T SEEM TO FIND IT...I'VE BE GREATFUL IF ANYONE CAN HELP