i am very new to coding. i'm using VS code, i watched a tutorial, this is my code. It says ''intents'' is not defined
code:
import discord
token = "mytokencuzsecuritynstuff"
client = discord.Client(Intents)
@client.event
async def on_ready():
print(f"logged in as {client.user}")
client.run(token)
what do i do to fix this?