How to Get Function Name from within Function

foo(){
  # Get Function Name from within Function
  echo "Function name: ${FUNCNAME[0]}"
}