My problem statement is the following:
Use NumPy and Matplotlib to draw a scatterplot of uniform random (x, y) values all drawn from the [0, 1] interval.

The following is what I have tried:
Code:
import matplotlib.pyplot as plt

import numpy as np

import random

# Fixing random state for reproducibility

np.random.seed(19680801)
 
N = 50

x
...