useSpecialPower.js
const useSpecialPower = () => {
  const specialPowerList = [
    "be invisible",
    "flight",
    "see the future",
    "read your mind",
  ];
  return specialPowerList[Math.floor(Math.random() * specialPowerList.length)];
};

export default useSpecialPower;