Problem async Tasks from other module


 name = Enum.take_random(alphabet = Enum.to_list(?a..?e), 5)
        :timer.sleep(1000)
        name = Task.async(fn ->
              pid = self()

I don’t know if I’m doing wrong this name creation so, because the idea here is create a name random, and this name gonna be the name task. This is the string that I’m passing in the code that you see.

Do I need to pass the name like an atom ?

Thank you Kartheek :smiley: