Trying to log rs which should be the value of the function create order but it returns promise pending
let createOrder = async function () {
let response = await client.execute(request);
return response
};
let rs = createOrder().then((result) => console.log(result))
console.log("rsssss",rs)