Context. Ten weeks of ad spend and sales. Before anyone claims "ads work", plot the relationship.
Your task. Write make_scatter(df) that draws a seaborn scatter plot with ad_spend on x and sales on y, and returns the axes.
Example. sns.scatterplot(...) — the column names become the axis labels automatically.
Notes. Pass the DataFrame via data= and name the columns via x= / y=.