Write a function called describePokemon() that take an object like the ones above and uses destructuring to return a description of the Pokemon such that: code example
Example: object destructuring into this
const demo = { nextUrl: 'nextUrl', posts: 'posts' };
const target = {}; // replace target with this
({ nextUrl: target.nextUrl, posts: target.communityPosts } = demo);
console.log(target);