Array.prototype.sort = () => {
for(let i = 0; i < this.length; i++) {
for(let j = i+1; j< this.length; j++) {
if (this[i] > this[j]) {
let temp = this[i]
this[i] = this[j]
this[j] = temp
}
}
}
return this
}