function iterate(obj) {
	let arr=[]
    Object.keys(obj).forEach(item=>{
    	arr.push(item+": "+obj[item])
    })
    return arr
}