Just a quick note about the next lesson. When you follow along in the next lesson, you'll be installing the latest version of the NPM package. However, this package has updated, so your example code will need to change too:

Use:

import { randomSuperhero } from "superheroes";
const name = randomSuperhero();


Instead of:

import superheroes from "superheroes";
const name = superheroes.random();