export function reverseWords(s: string): string {
  return s?.split(" ")?.reverse()?.join(" ");
}
