Turn an array column in a dask dataframe into multiple columns

I have a dask dataframe that has two columns one column is an ID, while the second column has a list in each row. I want to expand the second column to multiple columns with each of the columns having one item from the list. So a column with [2,4,5,8,9] becomes 5 columns .
Screen Shot 2022-08-31 at 2.00.10 PM

Thank you.