#Loading Libraries
import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt

# Generate random data
x = np.random.randn(50)
y = np.random.randn(50)

# Create scatter plot
sns.scatterplot(x=x, y=y)

# Show plot
plt.show()