'Unexpected token ')' in D:\Mridul\Codes\js\API BASED\Anime Quote\views\info.ejs while compiling ejs

So I want to display MongoDB data in HTML so I used the EJS template but this is the error it is showing . I can't seem to figure out where the problem is, IS it in the EJS file or in the data?

Here is the EJS template

`
<!DOCTYPE html>
<html>
<head>
        <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Information</title>
</head>
<body> 
    <h1>Information</h1>
    <ul class="savage">
        <%Content.forEach(data=>{%>
            <p><%=data.Name%></p>
            <p><%=data.Description%></p>
            <p><%=data.Birthday%></p>
            <p><%=data.Alternative_Name%></p>
            <p><%=data.Backstory%></p>
            <p><%=data.Anime_OR_Manga>%></p>
        <%})%>

    </ul>
        <h2>Add a Info</h2>
</body>`

Here is the server.js

const express=require('express');
const cors=require('cors');
const app= express();
const PORT =8000;
let ejs=require('ejs');
const mongoose=require('mongoose');
app.set('view engine','ejs');
const uri="mongodb+srv://mridultiwar:[email protected]/SearchBAckend?retryWrites=true&w=majority";
mongoose.connect(uri);

const savageSchema=new mongoose.Schema({
    Name:String,
    Description:String,
    Birthday:String,
    Alternative_Name:String,
    Backstory:String,
    Anime_OR_Manga:String,
})
const Savage=mongoose.model('savages',savageSchema)
// const client=new MongoClient(uri)
// MongoClient.connect(uri);
//let content=document.getElementById('addedinfo');
// app.get('/view',function(req,res){
//  db.serialize(()=>{
//      db.run()
//  })
// });
app.get('/info',function(req,res){
    Savage.findOne({},'Izuku', function(err,data){
        console.log(data);
        res.render('info.ejs',{
            Content:data
        })
    })
})

And here is the data i wanna retrieve

{"_id":{"$oid":"6275e6402c1944072bcb4646"},
"Name":"Izuku",
"Description":"Izuku 'Deku' Midoriya is the main protagonist of the manga and anime My Hero Academia and is in Class 1-A at U.A. High School."
,"Birthday":"July 15,2010 Cancer",
"Alternative_Name":"Deku",
"Backstory":"In a world where most humans on the planet develop superpowers soon after they're born, a boy named Izuku Midoriya was one of the few who never developed any powers. As a child, Izuku dreamed to become a superhero like his idol, All Might, after he developed his power, or 'Quirk'. As such, he was devastated once he learned that he'd never get a quirk. His lack of a Quirk made him a prime target for bullying, but Izuku still wanted to be a hero, and planned to go to the prestigious U.A. hero academy. Ten months before the entrance exams for U.A. started, Izuku came face to face with All Might after he was saved from a villain by him. Izuku asked All Might if it was possible for someone without a quirk to be a hero, but he responded by telling him that he needed realistic dreams. Soon after, the same villain from before ended up breaking free and attacking one of Izuku classmates. Despite not having a quirk, Izuku still tried to save his classmate. While he didn't stop the villain, he did give All Might enough time to defeat them himself. After this, All Might decided that Izuku had the potential to become a hero, with his help. He decided that he would grant Izuku his own Quirk to help him achieve his dreams. After ten months of training, All Might passed his Quirk, One For All, down to Izuku. Izuku then managed to pass the entrance exam, and officially enrolled in U.A, taking on the Hero name 'Deku",
"Anime_OR_Manga": "Boku No Hero Academia"

I tried looking for the similar error in stack overflow, but i can't seem to find it Here is the error shown:

{ _id: new ObjectId("626e9ade4b9416e659a5f4e1") }
SyntaxError: Unexpected token ')' in D:\Mridul\Codes\js\API BASED\Anime Quote\views\info.ejs while compiling ejs

If the above error is not helpful, you may want to try EJS-Lint:
https://github.com/RyanZim/EJS-Lint
Or, if you meant to create an async function, pass `async: true` as an option.
    at new Function (<anonymous>)
    at Template.compile (D:\Mridul\Codes\js\API BASED\Anime Quote\node_modules\ejs\lib\ejs.js:673:12)
    at Object.compile (D:\Mridul\Codes\js\API BASED\Anime Quote\node_modules\ejs\lib\ejs.js:398:16)
    at handleCache (D:\Mridul\Codes\js\API BASED\Anime Quote\node_modules\ejs\lib\ejs.js:235:18)
    at tryHandleCache (D:\Mridul\Codes\js\API BASED\Anime Quote\node_modules\ejs\lib\ejs.js:274:16)
    at View.exports.renderFile [as engine] (D:\Mridul\Codes\js\API BASED\Anime Quote\node_modules\ejs\lib\ejs.js:491:10)
    at View.render (D:\Mridul\Codes\js\API BASED\Anime Quote\node_modules\express\lib\view.js:135:8)
    at tryRender (D:\Mridul\Codes\js\API BASED\Anime Quote\node_modules\express\lib\application.js:640:10)
    at Function.render (D:\Mridul\Codes\js\API BASED\Anime Quote\node_modules\express\lib\application.js:592:3)
    at ServerResponse.render (D:\Mridul\Codes\js\API BASED\Anime Quote\node_modules\express\lib\response.js:1017:7)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source